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

@ -5,7 +5,7 @@ from flake8 import checker
@mock.patch('flake8.processor.FileProcessor')
def test_run_ast_checks_handles_SyntaxErrors(FileProcessor):
def test_run_ast_checks_handles_SyntaxErrors(FileProcessor): # noqa: N802,N803
"""Stress our SyntaxError handling.
Related to: https://gitlab.com/pycqa/flake8/issues/237