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
cmp0xff
changed the title
Reduce conversion to numpy arrays upon onset with decorators
Make developer, user and mypy happy with scalar and vector typing
Sep 16, 2024
t: Collection[float | int] | npt.NDArray[np.float64] | npt.NDArray[np.int64] | float | int
is too much.t = np.asarray(t)
at the beginning of all functionsnp.ndarray
/ tuple / set / ... )pd.DataFrame
, return a scalar if the input is a scalarmypy
, make it happyThe text was updated successfully, but these errors were encountered: