(self, key: str)
| 172 | # 这叫 "封装" — 将来内部结构变了,外部代码不用改。 |
| 173 | |
| 174 | def get(self, key: str) -> Optional[Any]: |
| 175 | return self.merged.get(key) |
| 176 | |
| 177 | def hooks_pre(self) -> list[str]: |
| 178 | return self.feature_config.hooks_pre_tool_use |
no outgoing calls
no test coverage detected