From d49d2feeda836144e367cbb9689e7465815eb373 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 14 Dec 2019 04:54:52 +0100 Subject: [PATCH] Fix indentation --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 3b30b96..3937e18 100644 --- a/main.py +++ b/main.py @@ -8,7 +8,7 @@ def get_modules(): for folder in os.listdir("./modules"): # skipping sample module if folder == "sample": - continue + continue print("Module found: " + folder) curr_module = importlib.import_module('.' + folder, package="modules")