forked from minhngoc25a/yt-dlc
Remove debugging print statements
This commit is contained in:
parent
ecdec1913f
commit
a5029645ae
|
@ -120,7 +120,6 @@ class ArchiveTree(object):
|
|||
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 @@ class ArchiveTree(object):
|
|||
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