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
The error message for an incompatible return type doesn't have quotation marks around the types. This makes it difficult to programmatically process the output of mypy to filter "expected" errors.
Example output: Error: Incompatible return value type (got List[Type1], expected List[Type2])
Expected output: Error: Incompatible return value type (got "List[Type1]", expected "List[Type2]")
The text was updated successfully, but these errors were encountered:
The error message for an incompatible return type doesn't have quotation marks around the types. This makes it difficult to programmatically process the output of mypy to filter "expected" errors.
Example output:
Error: Incompatible return value type (got List[Type1], expected List[Type2])
Expected output:
Error: Incompatible return value type (got "List[Type1]", expected "List[Type2]")
The text was updated successfully, but these errors were encountered: