Skip to content

Commit

Permalink
lower case the format, take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Feb 1, 2025
1 parent f54cb85 commit da18ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolomite_spatial/read_spatial_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def read_spatial_experiment(path: str, metadata: dict, **kwargs) -> SpatialExper
if len(image_samples) > 0:
for i, _ in enumerate(image_samples):
# TODO: write reader for SpatialImage class
image_data.append(construct_spatial_image_class(os.path.join(_img_path, f"{i}.{image_formats[i].tolower()}")))
image_data.append(construct_spatial_image_class(os.path.join(_img_path, f"{i}.{str(image_formats[i]).lower()}")))

_image_frame = BiocFrame(
{
Expand Down

0 comments on commit da18ce7

Please sign in to comment.