Skip to content
New issue

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

Incorrect types when using binary file mode #36

Open
FichteFoll opened this issue Aug 26, 2024 · 0 comments
Open

Incorrect types when using binary file mode #36

FichteFoll opened this issue Aug 26, 2024 · 0 comments

Comments

@FichteFoll
Copy link

When opening a file with binary file mode, this is not reflected in the .read and .write methods.

Example:

async def _store_file(path: AsyncPath, content: bytes):
    async with path.open("wb") as fp:
        s = await fp.read()
        reveal_type(s)
        await fp.write(content)

2024-08-26_16-50-32
2024-08-26_16-50-54

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@FichteFoll and others