Remove unused TypeVar (#7079)

Flagged by https://github.com/PyCQA/flake8-pyi/pull/161
This commit is contained in:
Alex Waygood
2022-01-29 19:36:02 +00:00
committed by GitHub
parent 99cec2d16b
commit d59fb394e7

View File

@@ -1,10 +1,7 @@
import typing
from _typeshed import Self, StrPath
from datetime import tzinfo
from typing import Any, Iterable, Protocol, Sequence
_T = typing.TypeVar("_T", bound=ZoneInfo)
class _IOBytes(Protocol):
def read(self, __size: int) -> bytes: ...
def seek(self, __size: int, __whence: int = ...) -> Any: ...