From 9d56f877ea5d4a19102bc3d3377c4ed8ea859d6c Mon Sep 17 00:00:00 2001 From: Ryan Shaffer <3620100+rmshaffer@users.noreply.github.com> Date: Wed, 8 May 2024 10:34:32 -0400 Subject: [PATCH] Lint --- .github/scripts/update_dependency.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/scripts/update_dependency.py b/.github/scripts/update_dependency.py index 6d74d88..63f3e21 100644 --- a/.github/scripts/update_dependency.py +++ b/.github/scripts/update_dependency.py @@ -28,7 +28,5 @@ for line in fileinput.input("setup.py", inplace=True): # Update the autoqasm dependency in setup.py to use the local path. This # would help catch conflicts during the installation process. - replaced_line = ( - line if package not in line else f'"{package} @ file://{path}/{package}",\n' - ) + replaced_line = line if package not in line else f'"{package} @ file://{path}/{package}",\n' print(replaced_line, end="")