Skip to content

Commit

Permalink
Fix set-version.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
Gal Topper committed Jun 1, 2023
1 parent 87c56d2 commit 3ba727e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion set-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def set_version():
with open(init_py) as fp:
for line in fp:
if line.startswith("__version__"):
line = f"__version__ = '{version}'\n"
line = f'__version__ = "{version}"\n'
lines.append(line)

with open(init_py, "w") as out:
Expand Down

0 comments on commit 3ba727e

Please sign in to comment.