Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
bengineerd committed Sep 30, 2024
1 parent 29ade9d commit 59ed565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_list_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def test_memory():
root.ListDevice.Int32List.set(Int32ListA)

root.ListDevice.UInt32List.set(UInt32ListA[::2])
root.ListDevice.Int32List.set(Int32ListA[::2]
root.ListDevice.Int32List.set(Int32ListA[::2])

root.ListDevice.UInt32List.set(np.array([1,2,3],np.uint32),index=7)
root.ListDevice.Int32List.set([1,-22,-33],index=5)
Expand Down

0 comments on commit 59ed565

Please sign in to comment.