Skip to content

Commit

Permalink
consistent use of quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
edyoshikun committed Jul 15, 2024
1 parent 8e563f8 commit 3133e56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mantis/analysis/AnalysisSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ class ConcatenateSettings(MyBaseModel):
concat_data_paths: list[str]
time_indices: Union[int, list[int], Literal["all"]] = "all"
channel_names: list[Union[str, list[str]]]
X_slice: Union[list[int], Literal["all"]] = 'all'
Y_slice: Union[list[int], Literal["all"]] = 'all'
Z_slice: Union[list[int], Literal["all"]] = 'all'
X_slice: Union[list[int], Literal["all"]] = "all"
Y_slice: Union[list[int], Literal["all"]] = "all"
Z_slice: Union[list[int], Literal["all"]] = "all"

@validator("concat_data_paths")
def check_concat_data_paths(cls, v):
Expand Down
6 changes: 3 additions & 3 deletions mantis/analysis/settings/example_concatenate_datasets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
concat_data_paths: ["/path/to/data.zarr/*/*/*","/path/to/data2.zarr/*/*/*"]
time_indices: all
channel_names: [all,all]
X_slice: 'all'
Y_slice: 'all'
Z_slice: 'all'
X_slice: all
Y_slice: all
Z_slice: all

0 comments on commit 3133e56

Please sign in to comment.