Skip to content

Commit

Permalink
Break up long line (google#12184)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Jul 9, 2024
1 parent 30c0bd9 commit 9df12da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/base-images/base-runner/python_coverage_runner_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def should_exclude_file(filepath):
return True

# Filter out all standard python libraries
if '/usr/local/lib/python' in filepath and 'site-packages' not in filepath and 'dist-packages' not in filepath:
if ('/usr/local/lib/python' in filepath and
'site-packages' not in filepath and 'dist-packages' not in filepath):
return True

# Avoid all PyInstaller modules.
Expand Down

0 comments on commit 9df12da

Please sign in to comment.