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)