Skip to content

Commit

Permalink
Appease pylint 1.6.2:
Browse files Browse the repository at this point in the history
Added check for breaking around a binary operator.
  • Loading branch information
tseaver committed Feb 16, 2015
1 parent 61c6814 commit b3e33dd
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 b3e33dd

Please sign in to comment.