chardet: add default value (#4074)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-05-24 18:48:24 -07:00
committed by GitHub
parent 997c73ae79
commit 9b89423f02

View File

@@ -25,7 +25,7 @@ class UniversalDetector(object):
lang_filter: int
logger: Logger
def __init__(self, lang_filter: int) -> None: ...
def __init__(self, lang_filter: int = ...) -> None: ...
def reset(self) -> None: ...
def feed(self, byte_str: bytes) -> None: ...
def close(self) -> _FinalResultType: ...