Skip to content

Commit 8e68a20

Browse files
committed
Merge pull request #655 from tseaver/pep8-1.6.2-error
Appease pylint 1.6.2:
2 parents 61c6814 + b3e33dd commit 8e68a20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run_pylint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def is_production_filename(filename):
103103
:rtype: boolean
104104
:returns: Boolean indicating production status.
105105
"""
106-
return not ('demo' in filename or 'test' in filename
107-
or filename.startswith('regression'))
106+
return not ('demo' in filename or 'test' in filename or
107+
filename.startswith('regression'))
108108

109109

110110
def get_files_for_linting(allow_limited=True):

0 commit comments

Comments
 (0)