Delete freeze from strings.pyi as well

This commit is contained in:
Tetsuo Kiso 2023-01-01 22:18:45 +09:00
parent 89b06c306d
commit 9ccc3bbf97
No known key found for this signature in database
GPG Key ID: 8A5C785B40695AF9

View File

@ -5,8 +5,7 @@ def get_string_id(key: Union[str, int]) -> int: ...
class StringStore:
def __init__(
self, strings: Optional[Iterable[str]] = ..., freeze: bool = ...
) -> None: ...
self, strings: Optional[Iterable[str]] = ...) -> None: ...
@overload
def __getitem__(self, string_or_id: Union[bytes, str]) -> int: ...
@overload