From 15d0c1defa6e82d86607b1624ffb969c91ed8cf2 Mon Sep 17 00:00:00 2001 From: bashrc Date: Fri, 24 Apr 2026 12:06:59 +0100 Subject: [PATCH] Tidying --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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