Skip to content

Commit b8d8eab

Browse files
committed
fix: Silenced R0917 (Too many positional arguments) in pylint for certain functions.
1 parent 4e19b11 commit b8d8eab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DockerComposeLibrary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def docker_compose_pull(self,
132132
except subprocess.CalledProcessError as e:
133133
raise AssertionError(f'[Docker Compose Pull] Failed to pull image(s): {e.output.rstrip()}') from e
134134

135-
# pylint: disable=R0912, R0913, C0103
135+
# pylint: disable=R0912, R0913, R0917, C0103
136136
def docker_compose_build(self,
137137
compress: bool = False,
138138
force_rm: bool = False,
@@ -207,7 +207,7 @@ def docker_compose_build(self,
207207
except subprocess.CalledProcessError as e:
208208
raise AssertionError(f'[Docker Compose Build] Failed to build image(s): {e.output.rstrip()}') from e
209209

210-
# pylint: disable=R0912, R0913, C0103
210+
# pylint: disable=R0912, R0913, R0917, C0103
211211
def docker_compose_up(self,
212212
timeout: str = '10 seconds',
213213
no_deps: bool = False,

0 commit comments

Comments
 (0)