solve stupid bug in spe_zip
This commit is contained in:
parent
1fac2cc29e
commit
12bcf7214a
@ -257,7 +257,7 @@ def spe_zip(l1,l2):
|
|||||||
ans = []
|
ans = []
|
||||||
for i in tmp:
|
for i in tmp:
|
||||||
if None in i:
|
if None in i:
|
||||||
j = [a for a in i if i != None][-1]
|
j = [a for a in i if a != None][-1]
|
||||||
else:
|
else:
|
||||||
j = list(i)
|
j = list(i)
|
||||||
ans.append(j)
|
ans.append(j)
|
||||||
|
Loading…
Reference in New Issue
Block a user