Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Aug 6, 2024
1 parent dfaf2c3 commit b688ec9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ndfilters/_tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _mean(a: np.ndarray, args: tuple = ()) -> float:
argnames="function",
argvalues=[
_mean,
]
],
)
@pytest.mark.parametrize(
argnames="size",
Expand All @@ -35,8 +35,8 @@ def _mean(a: np.ndarray, args: tuple = ()) -> float:
@pytest.mark.parametrize(
argnames="mode",
argvalues=[
"mirror"
]
"mirror",
],
)
def test_generic_filter(
array: np.ndarray | u.Quantity,
Expand Down Expand Up @@ -64,4 +64,3 @@ def test_generic_filter(
assert result.unit == array.unit
else:
assert np.all(result == result_expected)

0 comments on commit b688ec9

Please sign in to comment.