From 88f4a48cd87af0d6a9e10c38deaa095e8a5d772a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 24 Feb 2023 00:58:45 +0000 Subject: [PATCH] style: pre-commit fixes --- tests/test_numpy_scalars.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/test_numpy_scalars.py b/tests/test_numpy_scalars.py index 2256e78bc..ccebf548e 100644 --- a/tests/test_numpy_scalars.py +++ b/tests/test_numpy_scalars.py @@ -8,18 +8,18 @@ np = pytest.importorskip("numpy") SCALAR_TYPES = { np.bool_: False, - np.int8: -7, - np.int16: -15, - np.int32: -31, - np.int64: -63, - np.uint8: 9, - np.uint16: 17, - np.uint32: 33, - np.uint64: 65, - np.single: 1.125, - np.double: 1.25, - np.complex64: 1 - 0.125j, - np.complex128: 1 - 0.25j, + np.int8: -7, + np.int16: -15, + np.int32: -31, + np.int64: -63, + np.uint8: 9, + np.uint16: 17, + np.uint32: 33, + np.uint64: 65, + np.single: 1.125, + np.double: 1.25, + np.complex64: 1 - 0.125j, + np.complex128: 1 - 0.25j, } ALL_TYPES = [int, bool, float, bytes, str] + list(SCALAR_TYPES)