Remove BSSID parameter from get_aps_on_channel function signature

This commit is contained in:
Yaro Kasear 2025-04-14 15:32:31 -05:00
parent 0ac4a00332
commit 9b19c07b7a

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: