Merge pull request #115 from akamhy/akamhy-patch-1

do not use f-strings in setup.py
This commit is contained in:
Akash Mahanty
2022-01-25 10:42:27 +05:30
committed by GitHub

View File

@@ -15,7 +15,7 @@ as f:
version = str(about["__version__"])
download_url = f"https://github.com/akamhy/waybackpy/archive/{version}.tar.gz"
download_url = "https://github.com/akamhy/waybackpy/archive/{version}.tar.gz".format(version=version)
setup(
name=about["__title__"],