Fix TSCM Bluetooth scanner function signature mismatch

The unified get_tscm_bluetooth_snapshot() no longer accepts a bt_interface
parameter as it handles interface selection internally.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-21 20:36:28 +00:00
parent 588556c2a6
commit a1f8377dd4
2 changed files with 3 additions and 3 deletions

View File

@@ -1331,7 +1331,7 @@ def _run_sweep(
try:
# Use unified Bluetooth scanner if available
if _USE_UNIFIED_BT_SCANNER:
bt_devices = get_tscm_bluetooth_snapshot(bt_interface, duration=8)
bt_devices = get_tscm_bluetooth_snapshot(duration=8)
else:
bt_devices = _scan_bluetooth_devices(bt_interface, duration=8)
for device in bt_devices: