Skip to content

Commit f1bb0c1

Browse files
committed
fix: remove unused type ignore comment for CI MyPy compatibility - Remove unused type ignore comment from tomli import - Fix MyPy error in GitHub Actions CI pipeline - Maintain compatibility across different environments
1 parent 0aa7de4 commit f1bb0c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/contextcraft/utils/config_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try:
99
import tomllib # Python 3.11+
1010
except ImportError:
11-
import tomli as tomllib # type: ignore
11+
import tomli as tomllib
1212

1313
# Constants for backward compatibility with tests
1414
CONFIG_SECTION_NAME = "contextcraft"

0 commit comments

Comments
 (0)