From d59fb394e78290de275b8ec2315ecd80fa4a240e Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 29 Jan 2022 19:36:02 +0000 Subject: [PATCH] Remove unused `TypeVar` (#7079) Flagged by https://github.com/PyCQA/flake8-pyi/pull/161 --- stdlib/zoneinfo/__init__.pyi | 3 --- 1 file changed, 3 deletions(-) diff --git a/stdlib/zoneinfo/__init__.pyi b/stdlib/zoneinfo/__init__.pyi index 864392510..77148e835 100644 --- a/stdlib/zoneinfo/__init__.pyi +++ b/stdlib/zoneinfo/__init__.pyi @@ -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: ...