MCPcopy Index your code
hub / github.com/FSoft-AI4Code/CodeWiki / __init__

Method __init__

codewiki/cli/config_manager.py:47–52  ·  view source on GitHub ↗

Initialize the configuration manager.

(self)

Source from the content-addressed store, hash-verified

45 """
46
47 def __init__(self):
48 """Initialize the configuration manager."""
49 self._api_key: Optional[str] = None
50 self._config: Optional[Configuration] = None
51 self._force_no_keyring = os.environ.get("CODEWIKI_NO_KEYRING", "").strip() in ("1", "true", "yes")
52 self._keyring_available = self._check_keyring_available()
53
54 def _check_keyring_available(self) -> bool:
55 """Check if system keyring is available."""

Callers

nothing calls this directly

Calls 2

getMethod · 0.80

Tested by

no test coverage detected