mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-27 02:34:21 +00:00
fix flake8 conflict
This commit is contained in:
parent
54155cc164
commit
bcc117879a
@ -89,7 +89,7 @@ def main():
|
|||||||
while line:
|
while line:
|
||||||
x = line.split()
|
x = line.split()
|
||||||
print(" ".join(x[: args.skip_ncols]), end=" ")
|
print(" ".join(x[: args.skip_ncols]), end=" ")
|
||||||
a = " ".join(x[args.skip_ncols:])
|
a = " ".join(x[args.skip_ncols :])
|
||||||
|
|
||||||
# get all matched positions
|
# get all matched positions
|
||||||
match_pos = []
|
match_pos = []
|
||||||
@ -119,7 +119,7 @@ def main():
|
|||||||
i += 1
|
i += 1
|
||||||
a = chars
|
a = chars
|
||||||
|
|
||||||
a = [a[j: j + n] for j in range(0, len(a), n)]
|
a = [a[j : j + n] for j in range(0, len(a), n)]
|
||||||
|
|
||||||
a_flat = []
|
a_flat = []
|
||||||
for z in a:
|
for z in a:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user