Skip to content

Commit

Permalink
Fix pylint errors introduced in Python 3.12
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <[email protected]>
  • Loading branch information
mulkieran committed Oct 9, 2023
1 parent d9ff572 commit 7fd115b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/_introspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 7fd115b

Please sign in to comment.