drop extra comments

This commit is contained in:
Brandon Hancock
2025-01-14 13:00:18 -05:00
parent 4774420025
commit b3f62971c4

View File

@@ -1,5 +1,5 @@
import inspect
import logging # Import logging module
import logging
from pathlib import Path
from typing import Any, Callable, Dict, TypeVar, cast
@@ -8,7 +8,6 @@ from dotenv import load_dotenv
load_dotenv()
# Configure logging to display warnings
logging.basicConfig(level=logging.WARNING)
T = TypeVar("T", bound=type)