Skip to content

Commit

Permalink
Fix comment style in start-singleuser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Jan 22, 2024
1 parent 3dfe578 commit 7e240d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions images/base-notebook/start-singleuser.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
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"])

Expand Down

0 comments on commit 7e240d5

Please sign in to comment.