Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rmshaffer committed May 8, 2024
1 parent 42538ba commit 9d56f87
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/scripts/update_dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="")

0 comments on commit 9d56f87

Please sign in to comment.