Skip to content

Commit c9e32e6

Browse files
committed
fix error
Signed-off-by: xiaweijiang <[email protected]>
1 parent b8c1146 commit c9e32e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/route_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ def diff_sorted_lists(t1, t2):
213213
t1_x = t2_x = 0
214214
t1_miss = []
215215
t2_miss = []
216-
t1_len = len(t1);
217-
t2_len = len(t2);
216+
t1_len = len(t1)
217+
t2_len = len(t2)
218218
while t1_x < t1_len and t2_x < t2_len:
219219
d = cmps(t1[t1_x], t2[t2_x])
220220
if (d == 0):

0 commit comments

Comments
 (0)