From 17af2b4d3f688523646310b26b260c266d0b8c0f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 25 Jul 2020 15:18:19 +0100 Subject: [PATCH] Restructuring code --- cogs/anime.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/anime.py b/cogs/anime.py index 8d0a74db..a43dd1c2 100644 --- a/cogs/anime.py +++ b/cogs/anime.py @@ -196,6 +196,7 @@ class Anime(commands.Cog): # Send the list of waifus in the bot to the channel waifu_list = string.capwords(', '.join(map(str, waifus()))) + # Tell the user to try the waifus in the array await ctx.send(f"Try the waifu's listed below!" f"\n{waifu_list}") @@ -206,6 +207,7 @@ class Anime(commands.Cog): # Send the list of waifus in the bot to the channel husbando_list = string.capwords(', '.join(map(str, husbandos()))) + # Tell the user to try the husbando's in the array await ctx.send(f"Try the husbando's listed below!" f"\n{husbando_list}")