Skip to content

Commit a27336d

Browse files
committed
FIX: Double Typing Indicator
1 parent c5372bf commit a27336d

4 files changed

Lines changed: 0 additions & 5 deletions

File tree

cogs/fav.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
class FavModule(commands.Cog):
77
@commands.group(name="togglefav", aliases=["tf"], description="Toggles the media/character fav", case_insensitive=True)
88
@commands.check(general_helper.validate_user)
9-
@general_helper.with_typing_ctx()
109
async def toggle_fav(self, ctx: commands.Context):
1110
if ctx.subcommand_passed is None:
1211
await ctx.reply("Provide a valid subcommand")

cogs/lists.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class ListsModule(commands.Cog):
1414

1515
@commands.group(name="anime", description="Commands about your anime lists")
1616
@commands.check(general_helper.validate_user)
17-
@general_helper.with_typing_ctx()
1817
async def anime_group(self, ctx: commands.Context):
1918
if ctx.subcommand_passed is None:
2019
await ctx.reply("Please provide a valid subcommand.")
@@ -152,7 +151,6 @@ async def anime_paused_list(self, ctx: commands.Context, user: Member = None):
152151
@commands.group(name="manga", description="Commands about your manga lists")
153152
@commands.check(general_helper.validate_user)
154153
@general_helper.short_cooldown()
155-
@general_helper.with_typing_ctx()
156154
async def manga_group(self, ctx: commands.Context):
157155
if ctx.subcommand_passed is None:
158156
await ctx.reply("Please provide a valid subcommand.")

cogs/search.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class SearchModule(commands.Cog):
1313

1414
@commands.group(name="search", aliases=["find"], description="Commands for searching Anime and Manga")
1515
@general_helper.short_cooldown()
16-
@general_helper.with_typing_ctx()
1716
async def search_group(self, ctx: commands.Context):
1817
if ctx.subcommand_passed is None:
1918
return await ctx.reply(f"Please provide a valid subcommand! {config.YUI_SHY_EMOTE}")

cogs/spotify.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
class SpotifyModule(commands.Cog):
88
@commands.group(name="spotify", description="Group containing all the spotify module related commands")
99
@commands.has_permissions(administrator=True)
10-
@general_helper.with_typing_ctx()
1110
async def spotify(self, ctx: commands.Context):
1211
if ctx.subcommand_passed is None:
1312
current_server = await cm.manager.get_server(ctx.guild.id, True, ctx.guild.name)

0 commit comments

Comments
 (0)