From 66906c44867b424608c8cf8a14ead6d11bf61d31 Mon Sep 17 00:00:00 2001 From: mtuszowski Date: Fri, 20 Sep 2024 17:23:08 +0200 Subject: [PATCH] fx --- voice_recognition.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/voice_recognition.py b/voice_recognition.py index 15e9a14..fd3e77d 100644 --- a/voice_recognition.py +++ b/voice_recognition.py @@ -24,6 +24,8 @@ class CommunicationObject: self.type = msg_type self.user = user self.data = data + def __repr__(self): + return f"{self.type} : {self.user} : {self.data}" class WaveWriter: def __init__(self, user_id, queue):