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
with open(_toml, "wb") as output: tomli_w.dump(pyproject, output)
raises the errors Object of type "BufferedWriter" cannot be used with "with" because it does not implement enter
class BufferedWriter: def flush(self, *args, **kwargs) -> Any: ... def write(self, *args, **kwargs) -> Any: ... def __init__(self, *argv, **kwargs) -> None: ...
The text was updated successfully, but these errors were encountered:
Set BinaryIO as the baseclass for BufferedWriter will need to be done using a codemod as the class is not documented in the docstubs
already tried lookup: "BufferedWriter": "IOBase", # DOCME: not in documentation
Sorry, something went wrong.
No branches or pull requests
raises the errors
Object of type "BufferedWriter" cannot be used with "with" because it does not implement enter
The text was updated successfully, but these errors were encountered: