Skip to content

Commit e922d68

Browse files
fix: Wrong import name
1 parent cd802ce commit e922d68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/thread-cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313
__version__ = "0.1.0"
14-
from .utils.logging import CoreLogger, logging
14+
from .utils.logging import ColorLogger, logging
1515

1616
# Export Core
1717
from .base import cli_base as app
@@ -25,7 +25,7 @@
2525

2626

2727
# Setup Logging
28-
logging.setLoggerClass(CoreLogger)
28+
logging.setLoggerClass(ColorLogger)
2929

3030

3131
# Wildcard export

0 commit comments

Comments
 (0)