From 003c9f821d549d24283301e3359bc3647e64f959 Mon Sep 17 00:00:00 2001 From: Luca Sbardella Date: Sat, 2 Sep 2023 15:05:12 +0100 Subject: [PATCH] Add type --- quantflow/utils/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/quantflow/utils/types.py b/quantflow/utils/types.py index 1e1b3fd..f85324f 100644 --- a/quantflow/utils/types.py +++ b/quantflow/utils/types.py @@ -9,6 +9,7 @@ NumberType = Union[float, int, str, Number] Vector = Union[int, float, complex, np.ndarray] FloatArray = npt.NDArray[np.float_] +IntArray = npt.NDArray[np.int_] FloatArrayLike = FloatArray | float