Skip to content

Commit

Permalink
docs test error resolved - hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
KrissiHub committed Nov 23, 2023
1 parent 8ab95e7 commit 0909690
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions deepcave/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

from pathlib import Path

from deepcave.plugins import Plugin
from deepcave.runs.run import Run


Expand Down Expand Up @@ -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
Expand All @@ -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(),
Expand Down

0 comments on commit 0909690

Please sign in to comment.