Skip to content

Commit

Permalink
i is unused hence it goes
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Sep 21, 2024
1 parent 4f31cbb commit ce9bcbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/arp_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ce9bcbb

Please sign in to comment.