From 47c9037157549a0dd2c563ad830b3521792a5eca Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Mon, 27 Apr 2026 00:35:52 -0600 Subject: [PATCH] workan on py --- implementations/Python3/DREAMMAKER.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/Python3/DREAMMAKER.py b/implementations/Python3/DREAMMAKER.py index 9c159ae..7b6c3b7 100644 --- a/implementations/Python3/DREAMMAKER.py +++ b/implementations/Python3/DREAMMAKER.py @@ -11,7 +11,7 @@ async def main(): print("Scanning for BLE devices...") while True: try: - await devices = await BleakScanner.discover() + devices = await BleakScanner.discover() filtered_devices = [device for device in devices if any(device.address.upper().startswith(prefix) for prefix in VENDOR_PREFIXES)] if filtered_devices: now = datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] # includes miliseconds