Skip to content

Commit ee35f93

Browse files
committed
Change 'Layer' to 'Node'
1 parent 00562e8 commit ee35f93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/omero_zarr/masks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import omero.clients # noqa
88
from ome_zarr.data import write_multiscale
99
from ome_zarr.io import parse_url
10-
from ome_zarr.reader import Layer, Multiscales
10+
from ome_zarr.reader import Multiscales, Node
1111
from ome_zarr.scale import Scaler
1212
from omero.model import MaskI
1313
from omero.rtypes import unwrap
@@ -148,7 +148,7 @@ def save(self, masks: List[omero.model.Shape], name: str) -> None:
148148

149149
src = parse_url(source_image)
150150
assert src
151-
input_pyramid = Layer(src, [])
151+
input_pyramid = Node(src, [])
152152
assert input_pyramid.load(Multiscales)
153153
input_pyramid_levels = len(input_pyramid.data)
154154

0 commit comments

Comments
 (0)