Skip to content

Commit

Permalink
Bug fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
daphne12345 committed Aug 29, 2024
1 parent aa2fc51 commit d6ad37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepcave/plugins/hyperparameter/ablation_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def load_inputs(self) -> Dict[str, Dict[str, Any]]:
"show_confidence": {"options": get_select_options(binary=True), "value": "false"},
}

def load_dependency_inputs(self, run, _: Any, inputs: Dict[str, Any]) -> Dict[
def load_dependency_inputs(self, run: AbstractRun, _: Any, inputs: Dict[str, Any]) -> Dict[
str, Any]: # type: ignore # noqa: E501
"""
Works like 'load_inputs' but called after inputs have changed.
Expand All @@ -224,7 +224,7 @@ def load_dependency_inputs(self, run, _: Any, inputs: Dict[str, Any]) -> Dict[
Parameters
----------
run
run: AbstractRun
The selected run.
inputs : Dict[str, Any]
Current content of the inputs.
Expand Down

0 comments on commit d6ad37e

Please sign in to comment.