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
*
There are cases when some types are revealed like:
# N: Revealed type is 'builtins.bool*'
Or like so:
reveal_type(dekind(container)) # N: Revealed type is 'main.IO[def (_ValueType`1) -> _NewValueType`-1]'
Here are the problems with these two things:
`
char in type vars.
So, I propose to add strict: false parameter to our test cases to ignore these chars (and possibly other things in the future).
strict: false
The text was updated successfully, but these errors were encountered:
I like strict_assert: false more. And probably we would also need a command line flag: --mypy-strict-assert
strict_assert: false
--mypy-strict-assert
Sorry, something went wrong.
PR #55 might cover this use case, though in a different way. Thoughts?
No branches or pull requests
There are cases when some types are revealed like:
Or like so:
Here are the problems with these two things:
*
while everything else will work the exact same waychar in type vars.
So, I propose to add
strict: false
parameter to our test cases to ignore these chars (and possibly other things in the future).The text was updated successfully, but these errors were encountered: