You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"errors prevented further checking" <-- this means you hit something bad enough that mypy was unable to perform further checks. mypy typically tries to avoid these blocking errors.
But for example, there is no way for mypy to recover from a syntax error and check the rest of the file
"errors prevented further checking" <-- this means you hit something bad enough that mypy was unable to perform further checks. mypy typically tries to avoid these blocking errors.
But for example, there is no way for mypy to recover from a syntax error and check the rest of the file
Thanks your reply. I resolved the problem by add args '--explicit-package-bases'.
while the result is:
xxx
Found 1 error in 1 file (errors prevented further checking)
It stoped checking after only one error.
The text was updated successfully, but these errors were encountered: