From 7fd115b2172cdce9f84fdf2be69991a823d9e26e Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 9 Oct 2023 08:59:32 -0400 Subject: [PATCH] Fix pylint errors introduced in Python 3.12 Signed-off-by: mulhern --- tests/_introspect.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/_introspect.py b/tests/_introspect.py index 5fc9f2f..12e9176 100644 --- a/tests/_introspect.py +++ b/tests/_introspect.py @@ -173,7 +173,7 @@ def arg_strategy(*, min_children=0, max_children=None, dbus_signature_args=None) @composite -def interface_strategy( # pylint: disable=too-many-locals +def interface_strategy( # pylint: disable=too-many-locals, too-many-arguments draw, *, min_children=0, @@ -266,7 +266,7 @@ def interface_strategy( # pylint: disable=too-many-locals @composite -def method_strategy( +def method_strategy( # pylint: disable=too-many-arguments draw, *, min_children=0, @@ -370,7 +370,7 @@ def signal_arg_strategy(*, min_children=0, max_children=None, dbus_signature_arg @composite -def signal_strategy( +def signal_strategy( # pylint: disable=too-many-arguments draw, *, min_children=0,