~ubuntu-core-dev/update-manager/main

« back to all changes in this revision

Viewing changes to tests/test_pep8.py

  • Committer: Balint Reczey
  • Date: 2018-10-01 15:56:40 UTC
  • mto: This revision was merged to the branch mainline in revision 2842.
  • Revision ID: balint.reczey@canonical.com-20181001155640-8okyjf48fx7oq0gv
Ignore PEP 8 W503 instead of E502 and drop many added backslashes

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
import unittest
7
7
 
8
8
# pep8 is overdoing it a bit IMO
9
 
IGNORE_PEP8 = "E265,E402,E502"
 
9
IGNORE_PEP8 = "E265,E402,W503"
10
10
IGNORE_FILES = (
11
11
)
12
12