diff --git a/utils.py b/utils.py index 7e493c714..0b8116dbc 100644 --- a/utils.py +++ b/utils.py @@ -4044,7 +4044,7 @@ def resembles_domain(text: str) -> bool: return True # yggdrasil address - if (text.startswith('[') and text.endswith(']') and ':' in text): + if text.startswith('[') and text.endswith(']') and ':' in text: return True return False