Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy committed Sep 2, 2024
1 parent 6095ecc commit f2c12fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sleplet/_convolution_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ def sifting_convolution(
if len(g_coefficient.shape) < len(f_coefficient.shape)
else g_coefficient
)
return (f_coefficient.T[:n] * g_reshape.conj().T[:n]).T.astype(f_coefficient.dtype)
return (f_coefficient.T[:n] * g_reshape.conj().T[:n]).T # type: ignore[return-value]

0 comments on commit f2c12fb

Please sign in to comment.