Removed a bunch of unused import symbols detected by pyright. (#5060)

Co-authored-by: Eric Traut <erictr@microsoft.com>
This commit is contained in:
Eric Traut
2021-02-23 11:46:46 -07:00
committed by GitHub
parent 507ca60ff8
commit c7c025ae08
9 changed files with 10 additions and 21 deletions

View File

@@ -1,6 +1,6 @@
from typing import Match
from typing import Any, Match
class JSONDecoder(object):
def __init__(self, **kwargs): ...
def __init__(self, **kwargs: Any) -> None: ...
def decode(self, s: str, _w: Match[str], _PY3: bool): ...
def raw_decode(self, s: str, idx: int, _w: Match[str], _PY3: bool): ...