Skip to content

Commit

Permalink
fix: remove undefined function
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-tutor committed Jun 4, 2024
1 parent c887111 commit a77576b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpx_rtp/received_rtp_stream_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ def packets_expected(self) -> int:

@property
def packets_lost(self) -> int:
return clamp_packets_lost(self.packets_expected - self.packets_received)
return self.packets_expected - self.packets_received

0 comments on commit a77576b

Please sign in to comment.