diff options
| author | 2021-07-23 14:51:29 +0100 | |
|---|---|---|
| committer | 2021-07-23 14:51:29 +0100 | |
| commit | b9203197f891932d2aa8d0066cfb495393e6b5ce (patch) | |
| tree | bc775d3e14684ff1689e1997fc915b019cf0e518 | |
| parent | Add missing comma (diff) | |
Remove trailing whitespace
| -rw-r--r-- | bot/exts/info/doc/_cog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/doc/_cog.py b/bot/exts/info/doc/_cog.py index 54960ce11..8faff926c 100644 --- a/bot/exts/info/doc/_cog.py +++ b/bot/exts/info/doc/_cog.py @@ -468,7 +468,7 @@ class DocCog(Cog): self.inventory_scheduler.cancel_all() self.init_refresh_task.cancel() asyncio.create_task(self.item_fetcher.clear(), name="DocCog.item_fetcher unload clear") - - + + def predicate_emoji_reaction(ctx: Context, error_message: Message, reaction: Reaction, user: User): return reaction.message == error_message and user == ctx.author and str(reaction) == DELETE_ERROR_MESSAGE_REACTION |