Skip to content

Commit

Permalink
chore: quiet max args linter, but leave enabled for future things
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Sep 22, 2024
1 parent f6bad3e commit ca66f0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scrapli_cfg/platform/base/async_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


class AsyncScrapliCfgPlatform(ABC, ScrapliCfgBase):
def __init__(
def __init__( # pylint: disable=R0917
self,
conn: AsyncNetworkDriver,
config_sources: List[str],
Expand Down
2 changes: 1 addition & 1 deletion scrapli_cfg/platform/base/base_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ def _pre_diff_config(self, source: str, session_or_config_file: bool) -> Scrapli

return diff_response

def _post_diff_config(
def _post_diff_config( # pylint: disable=R0917
self,
diff_response: ScrapliCfgDiffResponse,
scrapli_responses: List[Response],
Expand Down
2 changes: 1 addition & 1 deletion scrapli_cfg/platform/base/sync_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


class ScrapliCfgPlatform(ABC, ScrapliCfgBase):
def __init__(
def __init__( # pylint: disable=R0917
self,
conn: NetworkDriver,
config_sources: List[str],
Expand Down

0 comments on commit ca66f0b

Please sign in to comment.