Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SajidAlamQB committed Jul 10, 2023
1 parent 389c05f commit 66696e6
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions kedro-docker/kedro_docker/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ def docker_run(image, docker_args, args, **kwargs):
Any extra arguments unspecified in this help
are passed to `docker run` as is.
**kwargs is needed to make the global `verbose` argument work and pass it through."""
**kwargs is needed to make the global `verbose` argument work and pass it through.
"""

container_name = make_container_name(image, "run")
_docker_run_args = compose_docker_run_args(
Expand All @@ -233,7 +234,8 @@ def docker_ipython(image, docker_args, args, **kwargs):
Any extra arguments unspecified in this help are passed to
`kedro ipython` command inside the container as is.
**kwargs is needed to make the global `verbose` argument work and pass it through."""
**kwargs is needed to make the global `verbose` argument work and pass it through.
"""

container_name = make_container_name(image, "ipython")
_docker_run_args = compose_docker_run_args(
Expand Down Expand Up @@ -262,7 +264,8 @@ def docker_jupyter_notebook(docker_args, port, image, args, **kwargs):
Any extra arguments unspecified in this help are passed to
`kedro jupyter notebook` command inside the container as is.
**kwargs is needed to make the global `verbose` argument work and pass it through."""
**kwargs is needed to make the global `verbose` argument work and pass it through.
"""

container_name = make_container_name(image, "jupyter-notebook")
_docker_run_args = compose_docker_run_args(
Expand Down Expand Up @@ -291,7 +294,8 @@ def docker_jupyter_lab(docker_args, port, image, args, **kwargs):
Any extra arguments unspecified in this help are passed to
`kedro jupyter lab` command inside the container as is.
**kwargs is needed to make the global `verbose` argument work and pass it through."""
**kwargs is needed to make the global `verbose` argument work and pass it through.
"""

container_name = make_container_name(image, "jupyter-lab")
_docker_run_args = compose_docker_run_args(
Expand All @@ -315,7 +319,8 @@ def docker_cmd(args, docker_args, image, **kwargs):
"""Run arbitrary command from ARGS in the Docker container.
If ARGS are not specified, this will invoke `kedro run` inside the container.
**kwargs is needed to make the global `verbose` argument work and pass it through."""
**kwargs is needed to make the global `verbose` argument work and pass it through.
"""

container_name = make_container_name(image, "cmd")
_docker_run_args = compose_docker_run_args(
Expand Down

0 comments on commit 66696e6

Please sign in to comment.