Skip to content

Commit

Permalink
Dev/main (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzouink authored Mar 27, 2024
2 parents 8f1bf0f + fc6ec1d commit 3acd771
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dacapo/utils/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import time
import copy
import json
from typing import Optional


def get_viewer(
Expand Down Expand Up @@ -87,7 +88,7 @@ def __init__(self, run: Run):
self.run: Run = run
self.score: float = -1
self.iteration: int = 0
self.parameter: str = None
self.parameter: Optional[str] = None
self.validation_parameters = run.validation_scores.parameters

self.array_store = create_array_store()
Expand Down
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
sphinx-autodoc-typehints
sphinx-material
sphinx-material
autoapi

0 comments on commit 3acd771

Please sign in to comment.