From cfb4936aa122a340254abd305593a53773186327 Mon Sep 17 00:00:00 2001 From: Fede Date: Thu, 26 Sep 2024 15:14:47 +0200 Subject: [PATCH] Fix ruff --- julearn/model_selection/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/julearn/model_selection/utils.py b/julearn/model_selection/utils.py index 1adcd1c44..38a54352b 100644 --- a/julearn/model_selection/utils.py +++ b/julearn/model_selection/utils.py @@ -15,8 +15,8 @@ def check_cv( - cv: CVLike, classifier: bool = False, include_final_model: bool = False -) -> CVLike: + cv: "CVLike", classifier: bool = False, include_final_model: bool = False +) -> "CVLike": """Check the CV instance and return the proper CV for julearn. Parameters