mirror of https://github.com/yt-dlp/yt-dlp.git
Randomize the ArchiveTree the proper Python way
Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
This commit is contained in:
parent
2459b6e1cf
commit
fd87f42378
|
@ -424,16 +424,7 @@ class YoutubeDL(object):
|
||||||
raise
|
raise
|
||||||
lmax = len(lines)
|
lmax = len(lines)
|
||||||
if lmax > 10:
|
if lmax > 10:
|
||||||
pos = 0
|
random.shuffle(lines)
|
||||||
while pos < lmax:
|
|
||||||
if lmax - pos <= 2:
|
|
||||||
break
|
|
||||||
target = random.randrange(pos + 1, lmax - 1)
|
|
||||||
# Swap line at pos with randomly chosen target
|
|
||||||
temp = lines[pos]
|
|
||||||
lines[pos] = lines[target]
|
|
||||||
lines[target] = temp
|
|
||||||
pos += 1
|
|
||||||
elif lmax < 1:
|
elif lmax < 1:
|
||||||
# No lines were loaded
|
# No lines were loaded
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in New Issue