From ea3631072ba9946ff549b5a25c5a00db901a06cb Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 28 May 2026 05:49:16 +0900 Subject: [PATCH] chore: add typehint ignore --- dzgui/managers/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzgui/managers/config.py b/dzgui/managers/config.py index d0ab9e8..419f5b0 100644 --- a/dzgui/managers/config.py +++ b/dzgui/managers/config.py @@ -60,7 +60,7 @@ class ConfigManager: seen = set() ips.append(fqip) # NOTE: Preserve linear order of records while deduplicating - unique = deque(maxlen=10) + unique = deque(maxlen=10) # type: ignore for i in range(len(ips) - 1, -1, -1): if ips[i] not in seen: seen.add(ips[i])