Skip to content

Commit

Permalink
ignore_unexpected=True
Browse files Browse the repository at this point in the history
  • Loading branch information
leafty committed May 10, 2024
1 parent 2a28e6c commit efa3eb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion renku_notebooks/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ def get_config(default_config: str) -> _NotebooksConfig:
config = dataconf.multi.string(default_config)
if config_file:
config = config.file(config_file)
notebooks_config: _NotebooksConfig = config.env("NB_").on(_NotebooksConfig)
notebooks_config: _NotebooksConfig = config.env("NB_", ignore_unexpected=True).on(
_NotebooksConfig
)
return notebooks_config


Expand Down

0 comments on commit efa3eb1

Please sign in to comment.