From b87c57c951d42205cc572e3b06d96007b11d96dd Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Tue, 1 Jul 2025 17:12:18 -0300 Subject: [PATCH] Adding missing docstring to the watchdog event --- src/pipecat/utils/asyncio/watchdog_event.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pipecat/utils/asyncio/watchdog_event.py b/src/pipecat/utils/asyncio/watchdog_event.py index 73a49ad3e..c48356c50 100644 --- a/src/pipecat/utils/asyncio/watchdog_event.py +++ b/src/pipecat/utils/asyncio/watchdog_event.py @@ -62,6 +62,7 @@ class WatchdogEvent(asyncio.Event): self._manager.task_reset_watchdog() def clear(self): + """Clear the event while resetting watchdog timer.""" if self._manager.task_watchdog_enabled: self._manager.task_reset_watchdog() super().clear()