Skip to content

Commit 33d9e95

Browse files
committed
fixed warning in docs
1 parent 51385c6 commit 33d9e95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/res/code/plugin_convert.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Class : ConvertUtils
1111
Methods
1212
**********************
1313
.. autoclass:: napari_cellseg3d.plugin_convert::ConvertUtils
14-
:members: __init__, build, folder_to_semantic, layer_to_semantic, folder_to_instance, layer_to_instance, layer_remove_small, folder_remove_small ,check_ready_folder, check_ready_layer :noindex:
14+
:members: __init__, build, folder_to_semantic, layer_to_semantic, folder_to_instance, layer_to_instance, layer_remove_small, folder_remove_small , check_ready_layer,check_ready_folder
1515
:noindex:
1616

1717
Attributes

napari_cellseg3d/interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def open_file_dialog(
7575
widget (QWidget): Widget to display file dialog in
7676
possible_paths (str): Paths that may have been chosen before, can be a string
7777
or an array of strings containing the paths
78-
load_as_folder (bool): Whether to open a folder or a single file. If True, will allow to open folder as a single file (2D stack interpreted as 3D)
79-
filetype (str): The description and file extension to load (format : "Description (*.example1 *.example2)"). Default "Image file (*.tif *.tiff)"
78+
load_as_folder (bool): Whether to open a folder or a single file. If True, will allow opening folder as a single file (2D stack interpreted as 3D)
79+
filetype (str): The description and file extension to load (format : ``"Description (*.example1 *.example2)"``). Default ``"Image file (*.tif *.tiff)"``
8080
8181
"""
8282

napari_cellseg3d/plugin_convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def folder_remove_small(self):
297297
)
298298

299299
def check_ready_folder(self):
300-
"""Check if results and source folders are set"""
300+
"""Check if results and source folders are correctly set"""
301301
if self.results_path == "":
302302
err = "ERROR : please set results folder"
303303
print(err)

0 commit comments

Comments
 (0)