Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Hellegouarch <[email protected]>
  • Loading branch information
Lawouach committed Feb 27, 2023
1 parent 8ef7c8f commit c1d7c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_version_from_package() -> str:
for line in f:
if line.startswith("__version__"):
token, version = line.split(" = ", 1)
version = version.replace("'", "").strip()
version = version.replace('"', "").strip()
return version


Expand Down

0 comments on commit c1d7c48

Please sign in to comment.