From eec145e095f0f9e8786a3def6b56440ddf2ea4a1 Mon Sep 17 00:00:00 2001 From: Gilles Boccon-Gibod Date: Thu, 11 Jul 2024 18:39:02 -0700 Subject: [PATCH] add type hint --- bumble/avdtp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/avdtp.py b/bumble/avdtp.py index 2f904c0a..1ab8fe34 100644 --- a/bumble/avdtp.py +++ b/bumble/avdtp.py @@ -2162,7 +2162,7 @@ class LocalStreamEndPoint(StreamEndPoint, EventEmitter): def on_abort_command(self): self.emit('abort') - def on_delayreport_command(self, delay): + def on_delayreport_command(self, delay: int): self.emit('delay_report', delay) def on_rtp_channel_open(self):