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
When we run some of our code through mypy, it reports the following issue:
error: Exception type must be derived from BaseException (or be a tuple of exception classes) [misc]
Here's a simplified example:
from pyVmomi import vim try: pass except vim.fault.VimFault: pass
vim.fault.VimFault
No mypy errors
pyvmomi==8.0.3.0.1 mypy==1.11.1 Python 3.10.6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When we run some of our code through mypy, it reports the following issue:
Here's a simplified example:
Reproduction steps
vim.fault.VimFault
exceptionsExpected behavior
No mypy errors
Additional context
pyvmomi==8.0.3.0.1
mypy==1.11.1
Python 3.10.6
The text was updated successfully, but these errors were encountered: