From 6aac77fcf60fe60b6ea8a8dc7d1afcf0908ecf73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Fredrik=20Ki=C3=A6r?= <31612826+anders-kiaer@users.noreply.github.com> Date: Wed, 19 Jun 2019 11:28:41 +0200 Subject: [PATCH] Load custom containers from correct module (#46) --- webviz_config/_config_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webviz_config/_config_parser.py b/webviz_config/_config_parser.py index 04badd39..0d8e8188 100644 --- a/webviz_config/_config_parser.py +++ b/webviz_config/_config_parser.py @@ -256,7 +256,7 @@ def clean_configuration(self): self._config_folder ) - self.assets.update(getattr(standard_containers, + self.assets.update(getattr(module, container_name).ASSETS) @property