We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"{} already exists! Set `overwrite=True` to redownload.".forma( download_location )
should be:
"{} already exists! Set `overwrite=True` to redownload.".format( download_location )
...or just
f"{download_location} already exists! Set `overwrite=True` to redownload."
The text was updated successfully, but these errors were encountered:
Thanks very much @nick-youngblut! Shoul be able to fix it, but would you like to make a PR?
Sorry, something went wrong.
Given that it's a minor typo, it would be faster for you. If I would make a PR, I'd look over the code and make more changes (e.g., .format() => f"").
.format()
f""
That code is no longer used (explains why this was not caught earlier). It has not been use since pysradb 1.0 was released (~4 years ago)
No branches or pull requests
should be:
...or just
The text was updated successfully, but these errors were encountered: