From bb0bcfea8dcd80e9b66faa8e9d327cae45a1c0dd Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 23 Dec 2024 10:00:02 -0500 Subject: [PATCH] pylint: Allow too-many-positional-arguments Signed-off-by: mulhern --- src/dbus_python_client_gen/_errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbus_python_client_gen/_errors.py b/src/dbus_python_client_gen/_errors.py index 221ecb9..54c8b50 100644 --- a/src/dbus_python_client_gen/_errors.py +++ b/src/dbus_python_client_gen/_errors.py @@ -164,7 +164,7 @@ def __init__( method_name, expected, actual, - ): # pylint: disable=too-many-arguments + ): # pylint: disable=too-many-arguments, too-many-positional-arguments """ Initialize a DPClientKeywordError with the mismatched arguments.