Skip to content
Snippets Groups Projects
Commit e8e5df10 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

No longer need to modify global notebooks dictionary

parent 7cfe3c34
No related branches found
No related tags found
1 merge request!575Refactor parsing arguments and loading main notebook
......@@ -452,8 +452,7 @@ def parse_argv_and_load_nb(argv) -> Tuple[Dict, NBDetails]:
user_notebook_args, _ = user_notebook_parser.parse_known_args(argv[1:])
nb_info["notebook"] = user_notebook_path.format(**vars(user_notebook_args))
notebook = nb_info["notebook"]
notebook = user_notebook_path.format(**vars(user_notebook_args))
concurrency = nb_info.get("concurrency", {'parameter': None})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment