From 791708cc3dc82f88f4f3da553f2d75ad5a95dde9 Mon Sep 17 00:00:00 2001 From: Flowseal Date: Sat, 18 Apr 2026 15:25:11 +0300 Subject: [PATCH] ws_blacklsit annotation fix --- proxy/tg_ws_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/tg_ws_proxy.py b/proxy/tg_ws_proxy.py index 37d17d3..65b2bed 100644 --- a/proxy/tg_ws_proxy.py +++ b/proxy/tg_ws_proxy.py @@ -35,7 +35,7 @@ log = logging.getLogger('tg-mtproto-proxy') DC_FAIL_COOLDOWN = 30.0 WS_FAIL_TIMEOUT = 2.0 -ws_blacklist: Set[Tuple[int, bool]] = set() +ws_blacklist: Set[str] = set() dc_fail_until: Dict[Tuple[int, bool], float] = {}