Skip to content

Commit

Permalink
minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
AnniekStok committed Aug 13, 2024
1 parent 09d25a1 commit 1358e41
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ project_urls =
[options]
packages = find:
install_requires =
napari
napari >=0.5.0
numpy
scikit-image
napari-skimage-regionprops
Expand Down
2 changes: 1 addition & 1 deletion src/napari_segmentation_correction/_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
)
from skimage import measure

from ._custom_table_widget import ColoredTableWidget
from .copy_label_widget import CopyLabelWidget
from .custom_table_widget import ColoredTableWidget
from .erosion_dilation_widget import ErosionDilationWidget
from .image_calculator import ImageCalculator
from .layer_manager import LayerManager
Expand Down
2 changes: 1 addition & 1 deletion src/napari_segmentation_correction/image_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
QWidget,
)

from ._layer_dropdown import LayerDropdown
from .layer_dropdown import LayerDropdown


class ImageCalculator(QWidget):
Expand Down
2 changes: 1 addition & 1 deletion src/napari_segmentation_correction/layer_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
QWidget,
)

from ._layer_dropdown import LayerDropdown
from .layer_dropdown import LayerDropdown


class LayerManager(QWidget):
Expand Down
2 changes: 1 addition & 1 deletion src/napari_segmentation_correction/point_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
QWidget,
)

from ._layer_dropdown import LayerDropdown
from .layer_dropdown import LayerDropdown
from .layer_manager import LayerManager


Expand Down
2 changes: 1 addition & 1 deletion src/napari_segmentation_correction/threshold_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
QWidget,
)

from ._layer_dropdown import LayerDropdown
from .layer_dropdown import LayerDropdown


class ThresholdWidget(QWidget):
Expand Down

0 comments on commit 1358e41

Please sign in to comment.