From 8d23e45c554c9b51b305244fb3d9cb5b24a0d6ae Mon Sep 17 00:00:00 2001
From: Andrey Aristov <aaristov@pasteur.fr>
Date: Sat, 26 Mar 2022 23:27:54 +0100
Subject: [PATCH] fix url

---
 src/napari_segment/_writer.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/napari_segment/_writer.py b/src/napari_segment/_writer.py
index d4d0461..10c248e 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
-- 
GitLab