Skip to content

Commit b13f8c7

Browse files
committed
Disable warning about too many positional arguments in tests
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent b363959 commit b13f8c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/math/test_interval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_invalid_range(start: LessThanComparable, end: LessThanComparable) -> No
6464
),
6565
],
6666
)
67-
def test_contains( # pylint: disable=too-many-arguments
67+
def test_contains( # pylint: disable=too-many-arguments,too-many-positional-arguments
6868
start: LessThanComparable,
6969
end: LessThanComparable,
7070
within: LessThanComparable,

0 commit comments

Comments
 (0)