Skip to content

Commit bf9aef3

Browse files
authored
Merge pull request galaxyproject#21307 from mvdbeek/fix_25_0_merge
[25.1] Fix forward merge
2 parents abf1388 + 1045f30 commit bf9aef3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/galaxy/datatypes/binary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4899,9 +4899,9 @@ class SpatialData(CompressedZarrZipArchive):
48994899

49004900
file_ext = "spatialdata.zip"
49014901

4902-
def _extract_spatialdata_info(self, filename: str) -> Dict[str, Any]:
4902+
def _extract_spatialdata_info(self, filename: str) -> dict[str, Any]:
49034903
"""Extract information about SpatialData elements from the zarr archive."""
4904-
info: Dict[str, Any] = {
4904+
info: dict[str, Any] = {
49054905
"images": set(),
49064906
"labels": set(),
49074907
"shapes": set(),

0 commit comments

Comments
 (0)