From af02f8f1cdc931caa53db3b8722eac83d6bc16ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 21 Jan 2025 09:43:33 -0800 Subject: [PATCH] filters(frame_filter): allow more than one frame --- src/pipecat/processors/filters/frame_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/filters/frame_filter.py b/src/pipecat/processors/filters/frame_filter.py index a2fb90505..43e2dab95 100644 --- a/src/pipecat/processors/filters/frame_filter.py +++ b/src/pipecat/processors/filters/frame_filter.py @@ -11,7 +11,7 @@ from pipecat.processors.frame_processor import FrameDirection, FrameProcessor class FrameFilter(FrameProcessor): - def __init__(self, types: Tuple[Type[Frame]]): + def __init__(self, types: Tuple[Type[Frame], ...]): super().__init__() self._types = types