Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 4, 2024
1 parent 41da71b commit 4116820
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_get_bitinformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ def test_get_bitinformation_dtype(rasm, dtype, implementation):
dtype_bits = np.finfo(dtype).bits
elif dtype.kind == "i" or dtype.kind == "u":
dtype_bits = np.iinfo(dtype).bits
assert len(xb.get_bitinformation(ds, dim="x")[v].coords["bit" + dtype]) == dtype_bits
assert (
len(xb.get_bitinformation(ds, dim="x")[v].coords["bit" + dtype]) == dtype_bits
)


@pytest.mark.parametrize("implementation", ["julia", "python"])
Expand Down

0 comments on commit 4116820

Please sign in to comment.