diff options
-rw-r--r-- | bot/converters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/converters.py b/bot/converters.py index 977035e1d..038f815a5 100644 --- a/bot/converters.py +++ b/bot/converters.py @@ -424,7 +424,7 @@ class HushDurationConverter(Converter): def _is_an_unambiguous_user_argument(argument: str) -> bool: """Check if the provided argument is a user mention or user id.""" - user_id = IDConverter()._get_id_match(argument) + user_id = IDConverter._get_id_match(argument) user_mention = RE_USER_MENTION.match(argument) return bool(user_id or user_mention) |