Skip to content

Commit af35d2a

Browse files
committed
Add missing quotes in docstring example.
1 parent b115461 commit af35d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/jobs/builders/runtimes/container_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ContainerRuntime(Runtime):
2323
>>> ContainerRuntime()
2424
>>> .with_image(
2525
>>> "iad.ocir.io/<your_tenancy>/<your_image>",
26-
>>> entrypoint=["/bin/sh", -c],
26+
>>> entrypoint=["/bin/sh", "-c"],
2727
>>> cmd="sleep 5 && echo Hello World",
2828
>>> )
2929
>>> .with_environment_variable(MY_ENV="MY_VALUE")

0 commit comments

Comments
 (0)