1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 05:31:15 +02:00

Remove debugging print statements

This commit is contained in:
Jody Bruchon 2020-09-17 14:46:11 -04:00
parent ecdec1913f
commit a5029645ae

View File

@ -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: