Skip to content

Commit

Permalink
[FIX] flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
f-dangel committed Sep 22, 2024
1 parent 07144a3 commit 58ab2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def compare_matmat(
# input in numpy format
op_scipy = op.to_scipy()
op_x = op_scipy @ x_numpy
assert type(op_x) == ndarray
assert type(op_x) is ndarray
assert allclose_report(from_numpy(op_x).to(dev), mat_x, **tol)

# input in tensor list format
Expand Down

0 comments on commit 58ab2c2

Please sign in to comment.