]> git.ipfire.org Git - thirdparty/patchwork.git/commit
pep8: Manually resolve remaining issues
authorStephen Finucane <stephen.finucane@intel.com>
Sun, 29 Nov 2015 21:08:44 +0000 (21:08 +0000)
committerStephen Finucane <stephen.finucane@intel.com>
Thu, 3 Dec 2015 22:09:21 +0000 (22:09 +0000)
commitf09f8c195520d1e5b665abb6f7c6b4478e4d15f5
tree3fecd61020f9fdc4b1247f9bfead20d8958cd33f
parent488cb3d641618920bab24ba054c222da5cfa9c7e
pep8: Manually resolve remaining issues

The 'autopep8' tool can't do everything, and it is necessary to resolve
some final issues. Most of these issues fall under the following
categories:

  E501  line too long
  E241  multiple spaces after ','
  F401  'module' imported but unused
  F841  local variable 'name' is assigned to but never used

It is also necessary to insert '# noqa' comments to hide some F403
errors ('unable to detect undefined names') where 'import *' is useful.

Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
31 files changed:
patchwork/bin/pwclient
patchwork/filters.py
patchwork/forms.py
patchwork/paginator.py
patchwork/parser.py
patchwork/requestcontext.py
patchwork/settings/dev.py
patchwork/settings/production.example.py
patchwork/templatetags/person.py
patchwork/tests/test_bundles.py
patchwork/tests/test_checks.py
patchwork/tests/test_encodings.py
patchwork/tests/test_expiry.py
patchwork/tests/test_filters.py
patchwork/tests/test_list.py
patchwork/tests/test_mboxviews.py
patchwork/tests/test_patchparser.py
patchwork/tests/test_person.py
patchwork/tests/test_registration.py
patchwork/tests/test_tags.py
patchwork/tests/test_updates.py
patchwork/tests/test_user.py
patchwork/tests/test_xmlrpc.py
patchwork/tests/utils.py
patchwork/urls.py
patchwork/utils.py
patchwork/views/__init__.py
patchwork/views/base.py
patchwork/views/bundle.py
patchwork/views/mail.py
patchwork/views/user.py