Skip to content

Commit

Permalink
Supress plr linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BSchilperoort committed Jun 10, 2024
1 parent 6a19c8a commit 8087f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def test_max_lag_skip_years(self, max_lag, expected_index, expected_size):
(False, 11, False, False),
),
)
def test_map_to_data_rightbounds(
def test_map_to_data_rightbounds( # noqa: PLR0913 (too-many-arguments)
self, dummy_calendar, safe_mode, n_dropped_indices, inferable, valid
):
"""Test right bounds of calendar are created correctly."""
Expand Down Expand Up @@ -547,7 +547,7 @@ def test_map_to_data_rightbounds(
(False, 6, False, False),
),
)
def test_map_to_data_leftbounds(
def test_map_to_data_leftbounds( # noqa: PLR0913 (too-many-arguments)
self, dummy_calendar, safe_mode, n_dropped_indices, inferable, valid
):
"""Test left bounds of the calendar are created correctly."""
Expand Down

0 comments on commit 8087f22

Please sign in to comment.