Skip to content

Commit

Permalink
disable too-many-positional
Browse files Browse the repository at this point in the history
  • Loading branch information
yec-akamai committed Sep 24, 2024
1 parent e64e1ee commit 9e4f831
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/module_utils/linode_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
RETRY_STATUSES = {408, 429, 502}


class LinodeModuleBase:
class LinodeModuleBase: # pylint: disable=too-many-positional
"""A base for all Linode resource modules."""

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/linode_common_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class InfoModuleResult:
] = None


class InfoModule(LinodeModuleBase):
class InfoModule(LinodeModuleBase): # pylint: disable=too-many-positional
"""A common module for listing API resources given a set of filters."""

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/linode_common_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ListModuleParam:

class ListModule(
LinodeModuleBase
): # pylint: disable=too-many-instance-attributes
): # pylint: disable=too-many-instance-attributes,too-many-positional
"""A common module for listing API resources given a set of filters."""

def __init__(
Expand Down

0 comments on commit 9e4f831

Please sign in to comment.