Skip to content

Commit

Permalink
appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
lgray authored Jan 26, 2024
1 parent 9b94845 commit 4a7ef1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_nanoevents_vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

def assert_record_arrays_equal(a, b, check_type=False):
if check_type:
assert type(a) == type(b)
assert type(a) is type(b)
assert ak.fields(a) == ak.fields(b)
assert all(ak.all(a[f] == b[f]) for f in ak.fields(a))

Expand Down

0 comments on commit 4a7ef1e

Please sign in to comment.