We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b6d6f commit 8ca8668Copy full SHA for 8ca8668
mypy/typeshed/stdlib/logging/__init__.pyi
@@ -244,14 +244,14 @@ class Logger(Filterer):
244
def hasHandlers(self) -> bool: ...
245
def callHandlers(self, record: LogRecord) -> None: ... # undocumented
246
247
-CRITICAL: Literal[50]
248
-FATAL: Literal[50]
249
-ERROR: Literal[40]
250
-WARNING: Literal[30]
251
-WARN: Literal[30]
252
-INFO: Literal[20]
253
-DEBUG: Literal[10]
254
-NOTSET: Literal[0]
+CRITICAL: int
+FATAL: int
+ERROR: int
+WARNING: int
+WARN: int
+INFO: int
+DEBUG: int
+NOTSET: int
255
256
class Handler(Filterer):
257
level: int # undocumented
0 commit comments