From b164430fb1fa82c705077d46cdb685de5faf6a19 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 16:17:59 +0100 Subject: Changing import statement to support package --- minishell_test/suites/preprocess.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'minishell_test/suites/preprocess.py') diff --git a/minishell_test/suites/preprocess.py b/minishell_test/suites/preprocess.py index 0176399..d7d6bbc 100644 --- a/minishell_test/suites/preprocess.py +++ b/minishell_test/suites/preprocess.py @@ -6,13 +6,13 @@ # By: juligonz +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:25:00 by charles #+# #+# # -# Updated: 2021/01/21 13:06:55 by charles ### ########.fr # +# Updated: 2021/02/05 14:43:27 by charles ### ########.fr # # # # **************************************************************************** # -import config -import hooks -from suite import suite +import minishell_test.config as config +import minishell_test.hooks as hooks +from minishell_test.suite.decorator import suite @suite() -- cgit