removed unused imports, minor fixes

This commit is contained in:
smypmsa
2025-03-06 21:52:43 +00:00
parent fce547ec9e
commit ab186210fd
10 changed files with 18 additions and 36 deletions
+1 -2
View File
@@ -4,10 +4,9 @@ Logging utilities for the pump.fun trading bot.
import logging
import sys
from typing import Dict
# Global dict to store loggers
_loggers: Dict[str, logging.Logger] = {}
_loggers: dict[str, logging.Logger] = {}
def get_logger(name: str, level: int = logging.INFO) -> logging.Logger: