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

@@ -2,9 +2,9 @@ import textwrap
from typing import IO, Any, Callable, Generic, Text, TypeVar, overload
from typing_extensions import SupportsIndex
_TB = TypeVar("_TB", bound="_BaseEntry")
_TP = TypeVar("_TP", bound="POFile")
_TM = TypeVar("_TM", bound="MOFile")
_TB = TypeVar("_TB", bound=_BaseEntry)
_TP = TypeVar("_TP", bound=POFile)
_TM = TypeVar("_TM", bound=MOFile)
default_encoding: str