Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #114 from vpavlin/bug/set-ns-none
Browse files Browse the repository at this point in the history
Set notebook namespace to None if empty
  • Loading branch information
vpavlin authored Aug 25, 2021
2 parents 337eb6f + 96ff902 commit 4583d84
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .jupyter/jupyterhub_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
c.JupyterHub.cleanup_servers = False

custom_notebook_namespace = os.environ.get('NOTEBOOK_NAMESPACE')
if not custom_notebook_namespace:
custom_notebook_namespace = None;

import uuid
jsp_api_dict = {
Expand Down

0 comments on commit 4583d84

Please sign in to comment.