mirror of https://github.com/google/oss-fuzz.git
Break up long line (#12184)
This commit is contained in:
parent
30c0bd918e
commit
9df12dae76
|
@ -32,7 +32,8 @@ def should_exclude_file(filepath):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# Filter out all standard python libraries
|
# 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
|
return True
|
||||||
|
|
||||||
# Avoid all PyInstaller modules.
|
# Avoid all PyInstaller modules.
|
||||||
|
|
Loading…
Reference in New Issue