8000 Use `Literal` type in `io` and `_compression` by sobolevn · Pull Request #6917 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Use Literal type in io and _compression #6917

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

Merged
merged 3 commits into from
Jan 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
pre-commit-ci[bot] committed Jan 14, 2022
commit 162d76c0f30c2018ced2879a3ec8c68c147b72fc
2 changes: 1 addition & 1 deletion stdlib/_compression.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from _typeshed import WriteableBuffer
from io import BufferedIOBase, RawIOBase, DEFAULT_BUFFER_SIZE
from io import DEFAULT_BUFFER_SIZE, BufferedIOBase, RawIOBase
from typing import Any, Callable, Protocol

BUFFER_SIZE = DEFAULT_BUFFER_SIZE
Expand Down
0