Skip to content

Commit bf0c59e

Browse files
Merge pull request #135 from bioio-devs/bugfix/standard_metadata_typing
bugfix/standard_metadata_typing
2 parents 103816c + 5207c1f commit bf0c59e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bioio/bio_image.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import dask.array as da
1111
import numpy as np
1212
import xarray as xr
13+
from bioio_base.standard_metadata import StandardMetadata
1314
from bioio_base.types import MetaArrayLike
1415
from ome_types import OME
1516

@@ -1026,7 +1027,7 @@ def time_interval(self) -> biob.types.TimeInterval:
10261027
return self.reader.time_interval
10271028

10281029
@property
1029-
def standard_metadata(self) -> biob.standard_metadata.StandardMetadata:
1030+
def standard_metadata(self) -> StandardMetadata:
10301031
"""
10311032
Return a set of standardized metadata. The possible
10321033
fields are predefined by the StandardMetadata dataclass.

0 commit comments

Comments
 (0)