From 32f9e488657c76a81cf757648381772b50eac79c Mon Sep 17 00:00:00 2001 From: Steve Geluso Date: Tue, 26 Aug 2025 17:40:11 -0700 Subject: [PATCH] add missing import asyncio --- src/pipecat/processors/metrics/sentry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pipecat/processors/metrics/sentry.py b/src/pipecat/processors/metrics/sentry.py index 3a66bb1da..f5a46c74b 100644 --- a/src/pipecat/processors/metrics/sentry.py +++ b/src/pipecat/processors/metrics/sentry.py @@ -6,6 +6,8 @@ """Sentry integration for frame processor metrics.""" +import asyncio + from loguru import logger from pipecat.utils.asyncio.task_manager import BaseTaskManager