Skip to content

Commit 4614c3d

Browse files
committed
attempting to fix flake8 build error
1 parent 59dfc41 commit 4614c3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_rw.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ def test_rw(device):
1717

1818
for n in range(start.size(0)):
1919
cur = start[n].item()
20-
for l in range(1, walk_length):
21-
assert out[n, l].item() in col[row == cur].tolist()
22-
cur = out[n, l].item()
20+
for le in range(1, walk_length):
21+
assert out[n, le].item() in col[row == cur].tolist()
22+
cur = out[n, le].item()

0 commit comments

Comments
 (0)