remove quoted strings (#6933)

This commit is contained in:
Jelle Zijlstra
2022-01-16 14:29:13 -08:00
committed by GitHub
parent 85318d1b21
commit 0949e9e90d
7 changed files with 18 additions and 24 deletions

View File

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