From 9df12dae76d5518191c02364ae525a762707555c Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Tue, 9 Jul 2024 12:25:52 -0400 Subject: [PATCH] Break up long line (#12184) --- infra/base-images/base-runner/python_coverage_runner_help.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/base-images/base-runner/python_coverage_runner_help.py b/infra/base-images/base-runner/python_coverage_runner_help.py index f0cb6f42c..5d5f62712 100755 --- a/infra/base-images/base-runner/python_coverage_runner_help.py +++ b/infra/base-images/base-runner/python_coverage_runner_help.py @@ -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.