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
In python3.11 inspect.getargspec removed at last (after deprecation in 3.0). Proposed fix:
inspect.getargspec
try: from inspect import getargspec except ImportError: from inspect import getfullargspec def getargspec(f): return tuple(getfullargspec(f))[:4]
The text was updated successfully, but these errors were encountered:
I was just wondering about the sort of error I was getting when running ntfy. Now it makes sense, because I was using Python 3.11
ntfy
I hope this is fixed in an upcoming release.
Sorry, something went wrong.
No branches or pull requests
In python3.11
inspect.getargspec
removed at last (after deprecation in 3.0).Proposed fix:
The text was updated successfully, but these errors were encountered: