From c97912223d3730e08a06cffec886c0ff4f3da95c Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 31 Jan 2021 04:43:43 +0100 Subject: Fixing typing error --- src/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index 075f2be..493652c 100644 --- a/src/config.py +++ b/src/config.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2021/01/31 03:29:05 by charles ### ########.fr # +# Updated: 2021/01/31 04:41:29 by charles ### ########.fr # # # # ############################################################################ # @@ -89,8 +89,8 @@ MINISHELL_PATH = os.path.abspath( os.path.join(MINISHELL_DIR, MINISHELL_EXEC) ) -VALGRIND_CMD = [ - distutils.spawn.find_executable("valgrind"), +VALGRIND_CMD: List[str] = [ + distutils.spawn.find_executable("valgrind") or "couldn't find valgrind", # "valgrind", "--trace-children=no", "--leak-check=yes", -- cgit