Fix indentation

This commit is contained in:
Marcel Schwarz 2019-12-14 04:54:52 +01:00
parent d74cc9fec9
commit d49d2feeda

View File

@ -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")