From 46cd4c3e8dcf016ad6ad73a4bee159979343c255 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 7 Apr 2024 18:04:12 +0200 Subject: [PATCH] lint: fix unused-variable --- vppcfg/config/acl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vppcfg/config/acl.py b/vppcfg/config/acl.py index 6838b71..976149d 100644 --- a/vppcfg/config/acl.py +++ b/vppcfg/config/acl.py @@ -142,7 +142,7 @@ def is_ip(ip_string): return False try: - ipn = ipaddress.ip_network(ip_string, strict=False) + _ = ipaddress.ip_network(ip_string, strict=False) return True except: pass