@@ -86,7 +86,7 @@ def __init__(
8686 ** properties : Any ,
8787 ) -> None :
8888 """Initialize."""
89- # pylint: disable=invalid-name,redefined-builtin,too-many-arguments
89+ # pylint: disable=invalid-name,redefined-builtin,too-many-arguments,too-many-positional-arguments
9090 properties ["id" ] = id
9191 properties ["parent_id" ] = parent_id
9292 properties ["class" ] = self .upnp_class
@@ -627,7 +627,7 @@ def __init__(
627627 ** properties : Any ,
628628 ) -> None :
629629 """Initialize."""
630- # pylint: disable=redefined-builtin,too-many-arguments
630+ # pylint: disable=redefined-builtin,too-many-arguments,too-many-positional-arguments
631631 super ().__init__ (id , parent_id , descriptors , xml_el , strict , ** properties )
632632 self .extend (children )
633633
@@ -929,7 +929,7 @@ def __init__(
929929 xml_el : Optional [ET .Element ] = None ,
930930 ) -> None :
931931 """Initialize."""
932- # pylint: disable=too-many-arguments
932+ # pylint: disable=too-many-arguments,too-many-positional-arguments
933933 self .uri = uri
934934 self .protocol_info = protocol_info
935935 self .import_uri = import_uri
@@ -1007,7 +1007,7 @@ def __init__(
10071007 xml_el : Optional [ET .Element ] = None ,
10081008 ) -> None :
10091009 """Initialize."""
1010- # pylint: disable=invalid-name,redefined-builtin,too-many-arguments
1010+ # pylint: disable=invalid-name,redefined-builtin,too-many-arguments,too-many-positional-arguments
10111011 self .id = id
10121012 self .name_space = name_space
10131013 self .type = type
0 commit comments