We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cocoindex-code index
1 parent 060ab22 commit bbba0b1Copy full SHA for bbba0b1
1 file changed
src/cocoindex_code/__init__.py
@@ -1,7 +1,11 @@
1
"""CocoIndex Code - MCP server for indexing and querying codebases."""
2
3
-from .config import Config
4
-from .server import main, mcp
+import logging
+
5
+logging.basicConfig(level=logging.WARNING)
6
7
+from .config import Config # noqa: E402
8
+from .server import main, mcp # noqa: E402
9
10
__version__ = "0.1.0"
11
__all__ = ["Config", "main", "mcp"]
0 commit comments