examples/bluetooth: Update to use positional-only args to irq().

To match 6a6a5f9e15.
This commit is contained in:
Jim Mussared
2020-09-25 03:15:22 +10:00
parent 9123b67d64
commit 0fd0eb00aa
5 changed files with 5 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ class BLESimpleCentral:
def __init__(self, ble):
self._ble = ble
self._ble.active(True)
self._ble.irq(handler=self._irq)
self._ble.irq(self._irq)
self._reset()