RealOrangeOne / zoloto

A fiducial marker system powered by OpenCV - Supports ArUco and April
https://zoloto.readthedocs.io/en/stable/
BSD 3-Clause "New" or "Revised" License
13 stars 7 forks source link

Additional Flake8 plugins #137

Open trickeydan opened 4 years ago

trickeydan commented 4 years ago

I'd like to propose adding some extra flake8 plugins:

RealOrangeOne commented 4 years ago

flake8-commas is covered by black, which i'd definitely prefer.

The rest sound fine, although a PR with a reviewable diff is probably the best way to know for sure whether it's worthwhile.

PeterJCLaw commented 1 year ago

flake8-commas is covered by black, which i'd definitely prefer.

No, it isn't. black enables this sort of thing:

def foo(
    a, b, c
):

which flake8-commas does not as there is a missing trailing comma.