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
I encountered a syntax error while running the code on Python versions below 3.10. The use of the match statement is causing a SyntaxError:
Traceback (most recent call last): from pybalt import download File "pybalt/__init__.py", line 1, in <module> from .cobalt import ( File "pybalt/cobalt.py", line 335 match json["error"]["code"].split(".")[2]: ^ SyntaxError: invalid syntax
Please consider refactoring the code to remove the match statement or provide support for Python versions < 3.10.
Thank you! 😊
The text was updated successfully, but these errors were encountered:
Noted! Keep an eye at #3, it's still work in progress
Sorry, something went wrong.
No branches or pull requests
I encountered a syntax error while running the code on Python versions below 3.10. The use of the match statement is causing a SyntaxError:
Suggested Action
Please consider refactoring the code to remove the match statement or provide support for Python versions < 3.10.
Thank you! 😊
The text was updated successfully, but these errors were encountered: