~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to tests/test_pep8.py

  • Committer: Sebastien Bacher
  • Author(s): Andrea Azzarone
  • Date: 2018-11-13 20:53:28 UTC
  • Revision ID: seb128@ubuntu.com-20181113205328-5k0dvnvec40acgy3
* data/apt_check.py, data/package-data-downloader, tests/test_pep8.py:
  - update the code formating to be not hit W504 warnings,
    change to ignore W503 and be consistent with update-manager.

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,W504"
 
9
IGNORE_PEP8 = "E265, W503"
10
10
IGNORE_FILES = (
11
11
)
12
12