From 7c5f11be08ffcc37f8cd1d40c15e0cfc12902d2d Mon Sep 17 00:00:00 2001 From: SpookyDervish Date: Sat, 7 Mar 2026 09:55:38 +1100 Subject: [PATCH] sigh im so stupid --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index e1d67e7..363a43e 100644 --- a/test.py +++ b/test.py @@ -1,9 +1,9 @@ -import bleak +from bleak import BleakScanner, BleakClient import asyncio async def main(): - devices = await bleak.BleakScanner.discover() + devices = await BleakScanner.discover() for device in devices: print() print(f"Name: {device.name}")