Skip to content

Commit c1d7c48

Browse files
committed
fix syntax
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent 8ef7c8f commit c1d7c48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_version_from_package() -> str:
1717
for line in f:
1818
if line.startswith("__version__"):
1919
token, version = line.split(" = ", 1)
20-
version = version.replace("'", "").strip()
20+
version = version.replace('"', "").strip()
2121
return version
2222

2323

0 commit comments

Comments
 (0)