Fix all flake8 errors 77/65277/2
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)
commitf2bbdbbf7e03be031723a9680aa9deaf80e4a99c
tree54086b0ae60b65da0905e3b51c922934247b5370
parent674812a20f6804c287e1355ec8a1adf907798a94
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:
dashboard/__init__.py
dashboard/src/__init__.py
dashboard/src/account/__init__.py
dashboard/src/account/jira_util.py
dashboard/src/account/models.py
dashboard/src/account/tests/__init__.py
dashboard/src/account/tests/test_general.py
dashboard/src/account/urls.py
dashboard/src/account/views.py
dashboard/src/api/__init__.py
dashboard/src/api/admin.py
dashboard/src/api/models.py
dashboard/src/api/serializers/booking_serializer.py
dashboard/src/api/tests/__init__.py
dashboard/src/api/tests/test_serializers.py
dashboard/src/api/urls.py
dashboard/src/api/views.py
dashboard/src/booking/admin.py
dashboard/src/booking/models.py
dashboard/src/booking/stats.py
dashboard/src/booking/tests/test_models.py
dashboard/src/booking/urls.py
dashboard/src/booking/views.py
dashboard/src/dashboard/context_processors.py
dashboard/src/dashboard/exceptions.py
dashboard/src/dashboard/populate_db_iol.py
dashboard/src/dashboard/tasks.py
dashboard/src/dashboard/templatetags/__init__.py
dashboard/src/dashboard/tests/__init__.py
dashboard/src/dashboard/urls.py
dashboard/src/dashboard/views.py
dashboard/src/manage.py
dashboard/src/notifier/manager.py
dashboard/src/notifier/tests/test_dispatcher.py
dashboard/src/notifier/tests/test_models.py
dashboard/src/notifier/urls.py
dashboard/src/pharos_dashboard/celery.py
dashboard/src/pharos_dashboard/settings.py
dashboard/src/resource_inventory/admin.py
dashboard/src/resource_inventory/models.py
dashboard/src/resource_inventory/resource_manager.py
dashboard/src/resource_inventory/tests/test_managers.py
dashboard/src/resource_inventory/tests/test_models.py
dashboard/src/resource_inventory/views.py
dashboard/src/workflow/booking_workflow.py
dashboard/src/workflow/forms.py
dashboard/src/workflow/models.py
dashboard/src/workflow/resource_bundle_workflow.py
dashboard/src/workflow/snapshot_workflow.py
dashboard/src/workflow/sw_bundle_workflow.py
dashboard/src/workflow/tests/test_steps.py
dashboard/src/workflow/tests/test_steps_render.py
dashboard/src/workflow/tests/test_workflows.py
dashboard/src/workflow/urls.py
dashboard/src/workflow/views.py
dashboard/src/workflow/workflow_factory.py
dashboard/src/workflow/workflow_manager.py
dashboard/test.sh