From b496ff9bb11949a4739ba44c75f2f5504a094fdb Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 18:02:45 +0100 Subject: Removing annoying flake8 plugins --- minishell_test/suite/decorator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'minishell_test/suite/decorator.py') diff --git a/minishell_test/suite/decorator.py b/minishell_test/suite/decorator.py index a843bc4..45f96b6 100644 --- a/minishell_test/suite/decorator.py +++ b/minishell_test/suite/decorator.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:28:00 by charles #+# #+# # -# Updated: 2021/02/05 14:50:41 by charles ### ########.fr # +# Updated: 2021/02/05 17:44:25 by charles ### ########.fr # # # # ############################################################################ # @@ -26,7 +26,7 @@ def suite(groups: List[str] = [], bonus: bool = False): # type: ignore mod = inspect.getmodule(origin) if mod is None: raise NotImplementedError - mod_name = mod.__name__[len("suites."):] + mod_name = mod.__name__[len("minishell_test.suites."):] name = "{}/{}".format(mod_name, origin.__name__[len("suite_"):]) description = origin.__doc__ if description is None: -- cgit