Add pep8-naming to flake8 linting

This commit is contained in:
Ian Stapleton Cordasco 2017-11-26 08:46:49 -06:00
parent a3a2539a23
commit c60546e896
No known key found for this signature in database
GPG key ID: C9D7A2604B4FCB2A
5 changed files with 13 additions and 12 deletions

View file

@ -24,7 +24,7 @@ def test_to_optparse():
@mock.patch('optparse.Option')
def test_to_optparse_creates_an_option_as_we_expect(Option):
def test_to_optparse_creates_an_option_as_we_expect(Option): # noqa: N803
"""Show that we pass all keyword args to optparse.Option."""
opt = manager.Option('-t', '--test', action='count')
opt.to_optparse()