Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
fraimondo committed Apr 29, 2024
1 parent 43bb8a5 commit 6302b4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions julearn/pipeline/tests/test_pipeline_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def test_hyperparameter_tuning_bayes(
bayes_search_params,
)
assert isinstance(pipeline, BayesSearchCV)
assert pipeline.search_spaces == param_grid
assert pipeline.search_spaces == param_grid # type: ignore


def _compare_param_grids(a: Dict, b: Dict) -> None:
Expand Down Expand Up @@ -512,8 +512,8 @@ def test_added_model_target_transform() -> None:


def test_stacking(
X_iris: pd.DataFrame,
y_iris: pd.Series, # noqa: N803
X_iris: pd.DataFrame, # noqa: N803
y_iris: pd.Series,
) -> None:
"""Test that the stacking model works correctly."""
# Define our feature types
Expand Down

0 comments on commit 6302b4c

Please sign in to comment.