aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/infini/event.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/infini/event.py b/src/infini/event.py
index 1f04afeb..555dec57 100644
--- a/src/infini/event.py
+++ b/src/infini/event.py
@@ -29,9 +29,8 @@ class MessageEvent(InfiniEvent):
output: str
kwargs: Dict[str, Any]
- def __init__(self, name: str, output: str, **kwargs) -> None:
+ def __init__(self, name: str, **kwargs) -> None:
self.name = name
- self.output = output
self.kwargs = kwargs
def __repr__(self) -> str: