Skip to content

Commit

Permalink
Merge pull request #99 from mulkieran/fix-pylint
Browse files Browse the repository at this point in the history
Fix pylint errors introduced in Python 3.12
  • Loading branch information
mulkieran authored Oct 9, 2023
2 parents d9ff572 + 7fd115b commit 692044f
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 692044f

Please sign in to comment.