You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is Your Feature Request Related to a Problem? Please Describe
Following on #305, we now have the ability to add to the type of the numpy arrays. For simplicity, these have not been filled in yet. As part of #280, it would be good to have some types added to the various arrays.
Describe the Solution You'd Like
No response
Describe Alternatives You've Considered
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered:
Closes#246. Use `numpy.typing.NDArray` as the first step towards #280.
With `NDArray` we can use types, i.e. `NDArray[np.float64]`, which I'll
save for future work (#306).
I have also gone throughout and made sure anything like `ArrayLike` is
using the alias `import numpy.typing as npt`. Imports are generally in a
`if TYPE_CHECKING` block where possible.
We are using `numpy.testing` in some places. This was being aliased as
`npt`. To avoid confusion, I have removed this alias and left them as an
explicit import.
paddyroddy
changed the title
Following #305, fill in the type of numpy.typing.NDArray
Fill in missing the type of numpy.typing.NDArrayOct 3, 2024
paddyroddy
changed the title
Fill in missing the type of numpy.typing.NDArray
Fill in missing types for numpy.typing.NDArrayOct 3, 2024
Is Your Feature Request Related to a Problem? Please Describe
Following on #305, we now have the ability to add to the type of the
numpy
arrays. For simplicity, these have not been filled in yet. As part of #280, it would be good to have some types added to the various arrays.Describe the Solution You'd Like
No response
Describe Alternatives You've Considered
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: