Skip to content
Snippets Groups Projects
Commit 8d23e45c authored by Andrey Aristov's avatar Andrey Aristov
Browse files

fix url

parent 1baa8d17
Branches
Tags
No related merge requests found
...@@ -2,12 +2,13 @@ ...@@ -2,12 +2,13 @@
This module is an example of a barebones writer plugin for napari. This module is an example of a barebones writer plugin for napari.
It implements the Writer specification. 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. Replace code below according to your needs.
""" """
from __future__ import annotations 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: if TYPE_CHECKING:
DataType = Union[Any, Sequence[Any]] DataType = Union[Any, Sequence[Any]]
...@@ -16,9 +17,7 @@ if TYPE_CHECKING: ...@@ -16,9 +17,7 @@ if TYPE_CHECKING:
def write_single_image(path: str, data: Any, meta: dict): def write_single_image(path: str, data: Any, meta: dict):
"""Writes a single image layer""" """Writes a single image layer"""
pass
def write_multiple(path: str, data: List[FullLayerData]): def write_multiple(path: str, data: List[FullLayerData]):
"""Writes multiple layers of different types.""" """Writes multiple layers of different types."""
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment