We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c849077 commit e3ccc42Copy full SHA for e3ccc42
src/asf_tools/tile.py
@@ -129,7 +129,7 @@ def untile_array(
129
130
if isinstance(tiled_array, np.ma.MaskedArray):
131
assert len(untiled.shape) == 2
132
- untiled_mask = untile_array(tiled_array.mask, untiled.shape)
+ untiled_mask = untile_array(tiled_array.mask, untiled.shape) # type: ignore[arg-type]
133
untiled = np.ma.MaskedArray(untiled, mask=untiled_mask)
134
135
return untiled[:array_rows, :array_columns]
0 commit comments