Skip to content

Commit

Permalink
Make SolverParams optional in MotileRun
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed Aug 6, 2024
1 parent 2ba3645 commit fe5bed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motile_plugin/backend/motile_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class MotileRun(BaseModel):
"""

run_name: str
solver_params: SolverParams
solver_params: SolverParams | None = None
input_segmentation: np.ndarray | None = None
input_points: np.ndarray | None = None
output_segmentation: np.ndarray | None = None
Expand Down

0 comments on commit fe5bed0

Please sign in to comment.