From ce9bcbbf43266fc309fba79dbb1e4b78c9d6cf2d Mon Sep 17 00:00:00 2001 From: CyberRoute Date: Sat, 21 Sep 2024 16:55:20 +0200 Subject: [PATCH] i is unused hence it goes --- core/arp_scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/arp_scanner.py b/core/arp_scanner.py index b20bb8c..fd8fdd5 100644 --- a/core/arp_scanner.py +++ b/core/arp_scanner.py @@ -309,7 +309,7 @@ def run(self): finally: sys.stdout = original_stdout # Reset the standard output to its original state - for i, packet in enumerate(arp_packets): + for _, packet in enumerate(arp_packets): if packet[1].haslayer(scapy.ARP): ip_address = packet[1][scapy.ARP].psrc mac = packet[1][scapy.ARP].hwsrc