You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every place you're calling self.update_stats(...) you seem to be explicitly passing self, which causes an error in arg counts:
self.update_stats(self, stats, time, sample_rate)
should be:
self.update_stats(stats, time, sample_rate)
The text was updated successfully, but these errors were encountered:
Every place you're calling self.update_stats(...) you seem to be explicitly passing self, which causes an error in arg counts:
self.update_stats(self, stats, time, sample_rate)
should be:
self.update_stats(stats, time, sample_rate)
The text was updated successfully, but these errors were encountered: