mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
Remove debugging print statements
This commit is contained in:
parent
ecdec1913f
commit
a5029645ae
@ -120,7 +120,6 @@ def __init__(self, line):
|
||||
self.line = line
|
||||
|
||||
def at_insert(self, line):
|
||||
print("at_insert: ", line)
|
||||
if self.line:
|
||||
if line < self.line:
|
||||
if self.left is None:
|
||||
@ -136,7 +135,6 @@ def at_insert(self, line):
|
||||
self.line = line
|
||||
|
||||
def at_exist(self, line):
|
||||
print("at_exist: ", line)
|
||||
if self.line is None:
|
||||
return False
|
||||
if line < self.line:
|
||||
|
Loading…
Reference in New Issue
Block a user