diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/converters.py | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/bot/converters.py b/bot/converters.py index 7c62f92dd..4a0633951 100644 --- a/bot/converters.py +++ b/bot/converters.py @@ -341,11 +341,8 @@ class UserMentionOrID(UserConverter):      async def convert(self, ctx: Context, argument: str) -> discord.User:          """Convert the `arg` to a `discord.User`.""" -        print(argument)          match = self._get_id_match(argument) or re.match(r'<@!?([0-9]+)>$', argument) -        print(match) -          if match is not None:              return await super().convert(ctx, argument)          else: | 
