diff options
| author | 2021-07-23 14:06:07 +0100 | |
|---|---|---|
| committer | 2021-07-23 14:06:07 +0100 | |
| commit | 8f66672728e8f1d9adcc07882bcfe037bd1b9d2b (patch) | |
| tree | 9a8a6c3687b6eac08966dd549d4392e28ee67b85 | |
| parent | Add missing functools.partial import (diff) | |
Add missing comma
| -rw-r--r-- | bot/exts/info/doc/_cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/doc/_cog.py b/bot/exts/info/doc/_cog.py index 01358c453..54960ce11 100644 --- a/bot/exts/info/doc/_cog.py +++ b/bot/exts/info/doc/_cog.py @@ -352,7 +352,7 @@ class DocCog(Cog): try: await self.bot.wait_for( 'reaction_add', - check=_predicate_emoji_reaction + check=_predicate_emoji_reaction, timeout=NOT_FOUND_DELETE_DELAY ) |