Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
fshowalter committed Dec 9, 2024
1 parent 89a2dd4 commit 7228947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions booklog/utils/logging.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys as _sys
from typing import TYPE_CHECKING, Any, Callable, Sequence, TypeVar

from loguru import BasicHandlerConfig
from loguru import HandlerConfig
from loguru import logger as _base_logger

if TYPE_CHECKING:
Expand All @@ -11,7 +11,7 @@
Function = Callable[..., T]


logger_handlers: Sequence[BasicHandlerConfig] = [
logger_handlers: Sequence[HandlerConfig] = [
{
"sink": _sys.stdout,
"format": "<green>{elapsed}</green> | "
Expand Down

0 comments on commit 7228947

Please sign in to comment.