File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
33import logging
44from abc import ABC , abstractmethod
5- from collections .abc import Iterator
5+ from collections .abc import Iterator , Mapping
66from typing import Any
77
88from zarr .storage import FsspecStore , LocalStore
@@ -134,7 +134,7 @@ class FormatV01(Format):
134134 Initial format. (2020)
135135 """
136136
137- REQUIRED_PLATE_WELL_KEYS : dict [str , type ] = {"path" : str }
137+ REQUIRED_PLATE_WELL_KEYS : Mapping [str , type ] = {"path" : str }
138138
139139 @property
140140 def version (self ) -> str :
@@ -234,7 +234,11 @@ class FormatV04(FormatV03):
234234 introduce coordinate_transformations in multiscales (Nov 2021)
235235 """
236236
237- REQUIRED_PLATE_WELL_KEYS = {"path" : str , "rowIndex" : int , "columnIndex" : int }
237+ REQUIRED_PLATE_WELL_KEYS : Mapping [str , type ] = {
238+ "path" : str ,
239+ "rowIndex" : int ,
240+ "columnIndex" : int ,
241+ }
238242
239243 @property
240244 def version (self ) -> str :
You can’t perform that action at this time.
0 commit comments