mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
fix 2.7 version of Logger.debug (#578)
This commit is contained in:
@@ -55,7 +55,8 @@ class Logger:
|
||||
stack_info: bool = ..., extra: Dict[str, Any] = ...,
|
||||
**kwargs: Any) -> None: ...
|
||||
else:
|
||||
def debug(msg: Text, *args: Any, exc_info: _ExcInfoType = ...,
|
||||
def debug(self,
|
||||
msg: Text, *args: Any, exc_info: _ExcInfoType = ...,
|
||||
extra: Dict[str, Any] = ..., **kwargs: Any) -> None: ...
|
||||
def info(self,
|
||||
msg: Text, *args: Any, exc_info: _ExcInfoType = ...,
|
||||
|
||||
Reference in New Issue
Block a user