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

fix url

parent 1baa8d17
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment