Fix all flake8 errors
authorParker Berberian <pberberian@iol.unh.edu>
Tue, 20 Nov 2018 16:19:55 +0000 (11:19 -0500)
committerParker Berberian <pberberian@iol.unh.edu>
Mon, 26 Nov 2018 19:07:15 +0000 (14:07 -0500)
commitb7c4d286ffa618be0e95b15f3883e2f6920a3fb1
tree930e9b9282b8f50e671844b2a1e7f39dc5d6035d
parent6a90796de1df8d74c79415c39c867ffe6cd80fd0
Fix all flake8 errors

The flake8 command in test.sh finds no longer finds any errors.
This may form a basis of a jenkins verify job as a sort of 'weak compile-time checks'

The flake8 command will not complain about line length, and will not complain about
django's manage.py file

Change-Id: Ic47cb4fc7ada55e64485661ab6881aef475018ff
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
58 files changed:
__init__.py
src/__init__.py
src/account/__init__.py
src/account/jira_util.py
src/account/models.py
src/account/tests/__init__.py
src/account/tests/test_general.py
src/account/urls.py
src/account/views.py
src/api/__init__.py
src/api/admin.py
src/api/models.py
src/api/serializers/booking_serializer.py
src/api/tests/__init__.py
src/api/tests/test_serializers.py
src/api/urls.py
src/api/views.py
src/booking/admin.py
src/booking/models.py
src/booking/stats.py
src/booking/tests/test_models.py
src/booking/urls.py
src/booking/views.py
src/dashboard/context_processors.py
src/dashboard/exceptions.py
src/dashboard/populate_db_iol.py
src/dashboard/tasks.py
src/dashboard/templatetags/__init__.py
src/dashboard/tests/__init__.py
src/dashboard/urls.py
src/dashboard/views.py
src/manage.py
src/notifier/manager.py
src/notifier/tests/test_dispatcher.py
src/notifier/tests/test_models.py
src/notifier/urls.py
src/pharos_dashboard/celery.py
src/pharos_dashboard/settings.py
src/resource_inventory/admin.py
src/resource_inventory/models.py
src/resource_inventory/resource_manager.py
src/resource_inventory/tests/test_managers.py
src/resource_inventory/tests/test_models.py
src/resource_inventory/views.py
src/workflow/booking_workflow.py
src/workflow/forms.py
src/workflow/models.py
src/workflow/resource_bundle_workflow.py
src/workflow/snapshot_workflow.py
src/workflow/sw_bundle_workflow.py
src/workflow/tests/test_steps.py
src/workflow/tests/test_steps_render.py
src/workflow/tests/test_workflows.py
src/workflow/urls.py
src/workflow/views.py
src/workflow/workflow_factory.py
src/workflow/workflow_manager.py
test.sh