Skip to content

Commit e3ccc42

Browse files
committed
add type ignore
1 parent c849077 commit e3ccc42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/asf_tools/tile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def untile_array(
129129

130130
if isinstance(tiled_array, np.ma.MaskedArray):
131131
assert len(untiled.shape) == 2
132-
untiled_mask = untile_array(tiled_array.mask, untiled.shape)
132+
untiled_mask = untile_array(tiled_array.mask, untiled.shape) # type: ignore[arg-type]
133133
untiled = np.ma.MaskedArray(untiled, mask=untiled_mask)
134134

135135
return untiled[:array_rows, :array_columns]

0 commit comments

Comments
 (0)