File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def read_image(input_image):
4242 raise TypeError (f"Expected PIL Image, path, or URL. Got { type (input_image )} " )
4343
4444
45- def get_img_data (
45+ def construct_img_data (
4646 img : Union [str , os .PathLike ],
4747 scale_factor : str ,
4848 sample_id : str ,
Original file line number Diff line number Diff line change 1010import biocutils as ut
1111from singlecellexperiment import read_tenx_mtx
1212from ..SpatialExperiment import SpatialExperiment
13- from .._imgutils import get_img_data
13+ from .._imgutils import construct_img_data
1414from .._initutils import construct_spatial_coords_from_names
1515
1616
@@ -122,7 +122,7 @@ def read_img_data(
122122 ),
123123 None ,
124124 )
125- curr_image_data = get_img_data (
125+ curr_image_data = construct_img_data (
126126 img = image ,
127127 scale_factor = scale_factor ,
128128 sample_id = sample_id ,
You can’t perform that action at this time.
0 commit comments