codeforboston / GovLens

We scan thousands of government websites to check how well they stack up on security, accessibility, and public accountability.
MIT License
27 stars 42 forks source link

Black and Flake8 lint for the GovLens project #110

Closed zganger closed 4 years ago

zganger commented 4 years ago

I recognize this is many changes- most of the changes are adjusting unused or relative imports, multiple imports on a line, or black formatting via the definitions defined at https://black.readthedocs.io/en/stable/. The flake8 configuration should ignore E501,W503,E203 as they conflict with black rules.

To run locally, install the dev_requirements and from the root of the projects, run

black . flake8 . --ignore E501,W503,E203