Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Jun 3, 2024
1 parent fed3484 commit 037563f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_coreg/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ def test_pipeline(self) -> None:

@pytest.mark.parametrize("coreg1", all_coregs) # type: ignore
@pytest.mark.parametrize("coreg2", all_coregs) # type: ignore
def test_pipeline_combinations__nobiasvar(self, coreg1: Callable[[], Coreg], coreg2: Callable[[], Coreg]) -> None:
def test_pipeline_combinations__nobiasvar(self, coreg1: Callable[[], Coreg], coreg2: Callable[[], Coreg]) -> None:
"""Test pipelines with all combinations of coregistration subclasses (without bias variables)"""

# Create a pipeline from one affine and one biascorr methods.
Expand All @@ -636,7 +636,9 @@ def test_pipeline_combinations__nobiasvar(self, coreg1: Callable[[], Coreg], co
dict(bias_var_names=["slope", "aspect"], fit_or_bin="bin"),
],
) # type: ignore
def test_pipeline_combinations__biasvar(self, coreg1: Callable[[], Coreg], coreg2_init_kwargs: dict[str, str]) -> None:
def test_pipeline_combinations__biasvar(
self, coreg1: Callable[[], Coreg], coreg2_init_kwargs: dict[str, str]
) -> None:
"""Test pipelines with all combinations of coregistration subclasses with bias variables"""

# Create a pipeline from one affine and one biascorr methods
Expand Down

0 comments on commit 037563f

Please sign in to comment.