From 1727fd038cdef560342c566f3f9a372ad345fcd1 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 21 Jul 2020 23:56:22 +0100 Subject: [PATCH] Making cogs simpler --- main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.py b/main.py index d9020523..1046b72d 100644 --- a/main.py +++ b/main.py @@ -90,11 +90,8 @@ client = commands.Bot( # Create a new bot owner_id=154840866496839680, # Your unique User ID version=get_version) # Version number of Ensō~Chan -# Calls the cogs from the settings.py file and loads them -(anime, helps, fun, modmail) = settings.extensions() -complete_list = anime + helps + fun + modmail if __name__ == '__main__': - for ext in complete_list: + for ext in settings.extensions(): client.load_extension(ext)