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 mypy analyzes the following code:
filename = 'some.txt' with open(filename) as fh: c = cast(TextIOWrapper, fh) next(c) # skip line
it yields the following error: error: No overload variant of "next" matches argument types [io.TextIOWrapper]
error: No overload variant of "next" matches argument types [io.TextIOWrapper]
Since TextIOWrapper implements the next() method (which is even autocompleted by PyCharm IDE), I would not expect this error to be thrown.
The text was updated successfully, but these errors were encountered:
For the moment I make a workaround like this:
fh = cast(TextIOWrapper, open(filename)) fh.__next__()
Sorry, something went wrong.
No branches or pull requests
When mypy analyzes the following code:
it yields the following error:
error: No overload variant of "next" matches argument types [io.TextIOWrapper]
Since TextIOWrapper implements the next() method (which is even autocompleted by PyCharm IDE), I would not expect this error to be thrown.
The text was updated successfully, but these errors were encountered: