Remove BSSID parameter from get_aps_on_channel function signature

This commit is contained in:
Yaro Kasear 2025-04-14 16:12:29 -05:00
parent d69890fc3c
commit 17c17b41c2

View file

@ -148,7 +148,7 @@ def get_clients_on_channel(capture, ap_channel, ap_bssid):
return len(clients)
def get_aps_on_channel(capture, ap_channel, ap_bssid):
def get_aps_on_channel(capture, ap_channel):
try:
ap_channel = int(ap_channel)
except ValueError: