Remove unused variable

This commit is contained in:
Vinicius Brasil
2025-03-20 10:43:49 -03:00
committed by Vini Brasil
parent fae1cfdc89
commit e17911867d

View File

@@ -67,7 +67,6 @@ class CrewAIEventsBus:
source: The object emitting the event
event: The event instance to emit
"""
event_type = type(event)
for event_type, handlers in self._handlers.items():
if isinstance(event, event_type):
for handler in handlers: