Skip to content

Commit

Permalink
Disable warning about too many positional arguments in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Leandro Lucarella <[email protected]>
  • Loading branch information
llucax committed Oct 11, 2024
1 parent b363959 commit b13f8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/math/test_interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_invalid_range(start: LessThanComparable, end: LessThanComparable) -> No
),
],
)
def test_contains( # pylint: disable=too-many-arguments
def test_contains( # pylint: disable=too-many-arguments,too-many-positional-arguments
start: LessThanComparable,
end: LessThanComparable,
within: LessThanComparable,
Expand Down

0 comments on commit b13f8c7

Please sign in to comment.