fix: python3.9 typing
Some checks failed
build / build (push) Failing after 2m26s
build / build (pull_request) Failing after 2m24s

This commit is contained in:
张泊明518370910136 2025-03-05 02:14:15 -05:00
parent c1c8e6ff3d
commit 76b2a3c104
GPG Key ID: D47306D7062CDA9D

View File

@ -10,7 +10,6 @@ from loguru import logger as logger
# recipe from https://loguru.readthedocs.io/en/stable/overview.html#entirely-compatible-with-standard-logging
class InterceptHandler(logging.Handler):
def emit(self, record: logging.LogRecord) -> None:
level: str | int
try:
level = logger.level(record.levelname).name
except ValueError: