flake8 call in manage.py was broken such that it always passes. I've fixed this and the formatting issues which flake8 then found.
To test
run python manage.py lint and confirm that it passes
change something which should cause flake8 to fail, for example make a line too long, then run python manage.py lint again and confirm that it fails and prints the flake8 output
Fixes #22
flake8 call in
manage.py
was broken such that it always passes. I've fixed this and the formatting issues which flake8 then found.To test
python manage.py lint
and confirm that it passespython manage.py lint
again and confirm that it fails and prints the flake8 output