Skip to content

Commit 96dc1d3

Browse files
committed
BUG: Fix A Typo
1 parent 7d2b14c commit 96dc1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiatoolbox/wsicore/wsireader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3249,7 +3249,7 @@ def _parse_generic_tiled_metadata(self) -> dict:
32493249
):
32503250
mpp = [
32513251
utils.misc.ppu2mpp(res_x.value[0] / res_x.value[1], res_units.value),
3252-
utils.misc.ppu2mpp(res_x.value[0] / res_x.value[1], res_units.value),
3252+
utils.misc.ppu2mpp(res_y.value[0] / res_y.value[1], res_units.value),
32533253
]
32543254

32553255
return {

0 commit comments

Comments
 (0)