From d0a80859f630866461e8a888b3f8fe008c8158ba Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 11 Sep 2020 14:27:26 +0200 Subject: Added suite group and suite bonus, Added signal (not tested) --- src/suites/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/suites/__init__.py') diff --git a/src/suites/__init__.py b/src/suites/__init__.py index 68bad1f..b6b3b68 100644 --- a/src/suites/__init__.py +++ b/src/suites/__init__.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:48 by charles #+# #+# # -# Updated: 2020/09/09 15:20:22 by charles ### ########.fr # +# Updated: 2020/09/11 13:25:26 by charles ### ########.fr # # # # ############################################################################ # @@ -15,5 +15,3 @@ import glob modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py")) __all__ = [os.path.basename(f)[:-3] for f in modules if os.path.isfile(f) and not f.endswith("__init__.py")] - -# print(__all__) -- cgit