cleaning cruft part 2

This commit is contained in:
ed
2026-07-05 14:08:03 -04:00
parent 508baa69b6
commit 06898ca5a6
20 changed files with 74 additions and 469 deletions
+1 -4
View File
@@ -41,10 +41,7 @@ class EventEmitter:
"""Simple event emitter for decoupled communication between modules."""
def __init__(self) -> None:
"""
Initializes the EventEmitter with an empty listener map.
[C: src/mcp_client.py:_DDGParser.__init__, src/mcp_client.py:_TextExtractor.__init__]
"""
"""Initializes the EventEmitter with an empty listener map."""
self._listeners: Dict[str, List[Callable[..., Any]]] = {}
def on(self, event_name: str, callback: Callable[..., Any]) -> None: