Break up long line (#12184)

This commit is contained in:
jonathanmetzman 2024-07-09 12:25:52 -04:00 committed by GitHub
parent 30c0bd918e
commit 9df12dae76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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.