Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #295 from parnikkapore/fix_extend_print
Browse files Browse the repository at this point in the history
Remove tracing from media/playlist.py/extend()
  • Loading branch information
TerryGeng authored Sep 24, 2021
2 parents 3733353 + d60b538 commit 100a5d6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions media/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,11 @@ def insert(self, index, item):
return item

def extend(self, items):
print("extend to-enter")
with self.playlist_lock:
print("extend enter")
self.version += 1
super().extend(items)
self.pending_items.extend(items)

print("extend leave")

self.async_validate()
return items

Expand Down

0 comments on commit 100a5d6

Please sign in to comment.