Skip to content

Commit

Permalink
Merge pull request #655 from tseaver/pep8-1.6.2-error
Browse files Browse the repository at this point in the history
Appease pylint 1.6.2:
  • Loading branch information
tseaver committed Feb 16, 2015
2 parents 61c6814 + b3e33dd commit 8e68a20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def is_production_filename(filename):
:rtype: boolean
:returns: Boolean indicating production status.
"""
return not ('demo' in filename or 'test' in filename
or filename.startswith('regression'))
return not ('demo' in filename or 'test' in filename or
filename.startswith('regression'))


def get_files_for_linting(allow_limited=True):
Expand Down

0 comments on commit 8e68a20

Please sign in to comment.