Fix comment style in start-singleuser.py

This commit is contained in:
Ayaz Salikhov
2024-01-23 00:07:22 +01:00
parent 3dfe578caa
commit 7e240d59d3

View File

@@ -12,8 +12,9 @@ command = ["jupyterhub-singleuser"]
if "--ip=" not in os.environ.get("NOTEBOOK_ARGS", ""):
command.append("--ip=0.0.0.0")
# Append any optional NOTEBOOK_ARGS we were passed in. This is supposed to be multiple args passed
# 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,
# so we split it correctly with shlex
if "NOTEBOOK_ARGS" in os.environ:
command += shlex.split(os.environ["NOTEBOOK_ARGS"])