aboutsummaryrefslogtreecommitdiff
path: root/suites/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'suites/__init__.py')
-rw-r--r--suites/__init__.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/suites/__init__.py b/suites/__init__.py
deleted file mode 100644
index 68bad1f..0000000
--- a/suites/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# ############################################################################ #
-# #
-# ::: :::::::: #
-# __init__.py :+: :+: :+: #
-# +:+ +:+ +:+ #
-# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
-# +#+#+#+#+#+ +#+ #
-# Created: 2020/07/15 18:24:48 by charles #+# #+# #
-# Updated: 2020/09/09 15:20:22 by charles ### ########.fr #
-# #
-# ############################################################################ #
-
-import os
-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__)