Skip to content

Commit

Permalink
change fixture request typing in conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jan 8, 2025
1 parent cd89723 commit 7291758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def raw_data_pivoted() -> pd.DataFrame:

@pytest.fixture
def actuator_data(
request: tuple[str, str],
request: pytest.FixtureRequest,
) -> tuple[np.typing.NDArray[np.float64], np.typing.NDArray[np.float64]]:
input_path, output_path = request.param
data = np.loadtxt(input_path, delimiter=",")
Expand Down

0 comments on commit 7291758

Please sign in to comment.