diff --git a/src/napari_segment/_writer.py b/src/napari_segment/_writer.py index d4d046126fdda76a60b469ab7340932fbe3db768..10c248e176e4faf12346ea401cd885d0a4952f0e 100644 --- a/src/napari_segment/_writer.py +++ b/src/napari_segment/_writer.py @@ -2,12 +2,13 @@ This module is an example of a barebones writer plugin for napari. It implements the Writer specification. -see: https://napari.org/plugins/stable/guides.html#writers +see: https://napari.org/plugins/guides.html#writers Replace code below according to your needs. """ from __future__ import annotations -from typing import TYPE_CHECKING, List, Any, Sequence, Tuple, Union + +from typing import TYPE_CHECKING, Any, List, Sequence, Tuple, Union if TYPE_CHECKING: DataType = Union[Any, Sequence[Any]] @@ -16,9 +17,7 @@ if TYPE_CHECKING: def write_single_image(path: str, data: Any, meta: dict): """Writes a single image layer""" - pass def write_multiple(path: str, data: List[FullLayerData]): """Writes multiple layers of different types.""" - pass