Skip to content

Commit

Permalink
fix: Wrong import name
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Feb 4, 2024
1 parent cd802ce commit e922d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/thread-cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

__version__ = "0.1.0"
from .utils.logging import CoreLogger, logging
from .utils.logging import ColorLogger, logging

# Export Core
from .base import cli_base as app
Expand All @@ -25,7 +25,7 @@


# Setup Logging
logging.setLoggerClass(CoreLogger)
logging.setLoggerClass(ColorLogger)


# Wildcard export
Expand Down

0 comments on commit e922d68

Please sign in to comment.