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(),