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 noticed that some validators are breaking with the following error message:
TypeError: print_exception() missing 1 required positional argument: 'exc'
This started happening after #135 merge, at run.py catch clause. I was able to simulate the issue with the following chunk of code:
run.py
from traceback import print_exception try: raise Exception('Test') except Exception as err: print_exception(print_exception(value=e))
The solution should be as easy as implementing the function with the right call, without missing required positional arguments
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I noticed that some validators are breaking with the following error message:
TypeError: print_exception() missing 1 required positional argument: 'exc'
This started happening after #135 merge, at
run.py
catch clause. I was able to simulate the issue with the following chunk of code:Solution
The solution should be as easy as implementing the function with the right call, without missing required positional arguments
The text was updated successfully, but these errors were encountered: