From 11aeb68ddbf2b9f817c394c4a2ba1c1da9c6593f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Fri, 31 Jan 2025 18:28:38 -0800 Subject: [PATCH] frames: fix type s/OuputDTMFFrame/OutputDTMFFrame/ --- CHANGELOG.md | 3 ++- src/pipecat/frames/frames.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6274bc1e9..a26b86df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,7 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 contain a combination of function calls, function call responses, system messages, or just messages. -- Additional DTMF frames +- `InputDTMFFrame` is now based on `DTMFFrame`. There's also a new + `OutputDTMFFrame` frame. ### Fixed diff --git a/src/pipecat/frames/frames.py b/src/pipecat/frames/frames.py index d9d19f3ee..e0823e611 100644 --- a/src/pipecat/frames/frames.py +++ b/src/pipecat/frames/frames.py @@ -409,7 +409,7 @@ class InputDTMFFrame(DTMFFrame): @dataclass -class OuputDTMFFrame(DTMFFrame): +class OutputDTMFFrame(DTMFFrame): """A DTMF button output"""