From 62860750f2bc727545731832f9f2f00369774b3a Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Tue, 9 Apr 2024 09:37:29 +0200 Subject: [PATCH] Config: Fix useless print. --- src/config.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/config.py b/src/config.py index 790e5f67..1209cc16 100644 --- a/src/config.py +++ b/src/config.py @@ -168,11 +168,6 @@ class Config(SQL): map(lambda t: f"'{t}'", solver_type_list) ) - print( - "SELECT * FROM solver " + - f"WHERE type IN ({compatible_types})" - ) - solvers = self.execute( "SELECT * FROM solver " + f"WHERE type IN ({compatible_types})", -- GitLab