From 6353d8a99e1bec4f0c85b63d96eebc81e87f32f2 Mon Sep 17 00:00:00 2001 From: Caleb Provost <50122974+CalebProvost@users.noreply.github.com> Date: Thu, 14 Mar 2024 14:07:46 -0400 Subject: [PATCH] Remove unnecessary frame printing --- bumble/a2dp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/a2dp.py b/bumble/a2dp.py index 653a0426..63b51096 100644 --- a/bumble/a2dp.py +++ b/bumble/a2dp.py @@ -632,7 +632,7 @@ async def generate_packets(): # NOTE: this doesn't support frame fragments sbc_parser = SbcParser(self.read) async for frame in sbc_parser.frames: - print(frame) + # print(frame) if ( frames_size + len(frame.payload) > max_rtp_payload