We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfe578 commit 7e240d5Copy full SHA for 7e240d5
images/base-notebook/start-singleuser.py
@@ -12,8 +12,9 @@
12
if "--ip=" not in os.environ.get("NOTEBOOK_ARGS", ""):
13
command.append("--ip=0.0.0.0")
14
15
-# Append any optional NOTEBOOK_ARGS we were passed in. This is supposed to be multiple args passed
16
-# on to the notebook command, so we split it correctly with shlex
+# Append any optional NOTEBOOK_ARGS we were passed in.
+# This is supposed to be multiple args passed on to the notebook command,
17
+# so we split it correctly with shlex
18
if "NOTEBOOK_ARGS" in os.environ:
19
command += shlex.split(os.environ["NOTEBOOK_ARGS"])
20
0 commit comments