add type hint

This commit is contained in:
Gilles Boccon-Gibod
2024-07-11 18:39:02 -07:00
parent 27791cf218
commit eec145e095

View File

@@ -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):