Commit 4614c3d5 authored by Alexander Liao's avatar Alexander Liao
Browse files

attempting to fix flake8 build error

parent 59dfc410
...@@ -17,6 +17,6 @@ def test_rw(device): ...@@ -17,6 +17,6 @@ def test_rw(device):
for n in range(start.size(0)): for n in range(start.size(0)):
cur = start[n].item() cur = start[n].item()
for l in range(1, walk_length): for le in range(1, walk_length):
assert out[n, l].item() in col[row == cur].tolist() assert out[n, le].item() in col[row == cur].tolist()
cur = out[n, l].item() cur = out[n, le].item()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment