From 09096902e50e888a8d3d03d36ddf64d0b241609a Mon Sep 17 00:00:00 2001 From: Kristina Thieme Date: Thu, 23 Nov 2023 13:47:43 +0100 Subject: [PATCH] docs test error resolved - hopefully --- deepcave/config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deepcave/config.py b/deepcave/config.py index 643fd083..2ed89c45 100644 --- a/deepcave/config.py +++ b/deepcave/config.py @@ -13,7 +13,6 @@ from pathlib import Path -from deepcave.plugins import Plugin from deepcave.runs.run import Run @@ -90,7 +89,7 @@ def SERVER_NAME(self) -> str: return f"http://{self.DASH_ADDRESS}:{self.DASH_PORT}" @property - def PLUGINS(self) -> Dict[str, List["Plugin"]]: + def PLUGINS(self) -> Dict[str, List[Any]]: """A list of available plugins per category.""" from deepcave.plugins.budget.budget_correlation import BudgetCorrelation from deepcave.plugins.hyperparameter.importances import Importances @@ -103,7 +102,7 @@ def PLUGINS(self) -> Dict[str, List["Plugin"]]: from deepcave.plugins.summary.footprint import FootPrint from deepcave.plugins.summary.overview import Overview - plugins: Dict[str, List["Plugin"]] = {} + plugins: Dict[str, List[Any]] = {} plugins = { "Summary": [ Overview(),