From 85e58d48d36249cfc46481db8a211d4a6fb14704 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:55:18 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/binlets/_binlets.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/binlets/_binlets.py b/src/binlets/_binlets.py index 582bdcb..8a76f86 100644 --- a/src/binlets/_binlets.py +++ b/src/binlets/_binlets.py @@ -114,8 +114,10 @@ def _binlets_thresholding_nonlinear( def _check_test( - test: Callable[[np.ndarray, np.ndarray], np.ndarray[bool]] - | Callable[[np.ndarray, np.ndarray, int], np.ndarray[bool]], + test: ( + Callable[[np.ndarray, np.ndarray], np.ndarray[bool]] + | Callable[[np.ndarray, np.ndarray, int], np.ndarray[bool]] + ), ) -> Callable[[np.ndarray, np.ndarray, int], np.ndarray[bool]]: """Check that the test callable has a level parameter.