Skip to content

Commit

Permalink
Correct data type for "state" parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbhr committed Jan 18, 2024
1 parent 2703e03 commit 5710e3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion saenopy/gui/spheroid/modules/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ResultSpheroid(Saveable):
template: str = None
images: list = None
output: str = None
state: False
state : bool = False

pixel_size: float = None
time_delta: float = None
Expand Down
2 changes: 1 addition & 1 deletion saenopy/gui/tfm2d/modules/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Result2D(Saveable):
input: str = None
reference_stack: str = None
output: str = None
state: False
state: bool = False
pixel_size: float = None

u: np.ndarray = None
Expand Down

0 comments on commit 5710e3b

Please sign in to comment.