Shopify / shopify_python

Python development standards at Shopify
MIT License
65 stars 13 forks source link

avoiding unwanted tuples with trailing comma #67

Open kermany opened 7 years ago

kermany commented 7 years ago

I just encountered a bug due to a trailing comma: i.e, in my coda I had

FOO = 42,

instead of

FOO = 42

It interpreted FOO as a tuple. It would be great to have a rule to avoid such bugs in future (maybe removing trailing commas? )

@CamDavidsonPilon