Skip to content

Commit

Permalink
fix: import
Browse files Browse the repository at this point in the history
  • Loading branch information
a5chin committed Dec 16, 2024
1 parent 8056c16 commit 798ec97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions tools/logger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
"""Tools."""

from tools.logger.color import LogColor
from tools.logger.googlecloud import GoogleCloudFormatter
from tools.logger.local import LocalFormatter
from tools.logger.logger import Logger
from tools.logger.style import LogStyle
from tools.logger.type import LogType

__all__ = [
"GoogleCloudFormatter",
"LocalFormatter",
"LogColor",
"LogStyle",
"LogType",
"Logger",
]
3 changes: 2 additions & 1 deletion tools/logger/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ class LocalFormatter(logging.Formatter):

def __init__(self) -> None:
"""Initialize local logger formatter."""
from tools.logger import LogColor, LogStyle
from tools.logger.color import LogColor
from tools.logger.style import LogStyle

super().__init__()
base = (
Expand Down

0 comments on commit 798ec97

Please sign in to comment.