mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 20:50:14 +01:00
examples/bluetooth: Update to use positional-only args to irq().
To match 6a6a5f9e15.
This commit is contained in:
@@ -56,7 +56,7 @@ class BLETemperatureCentral:
|
||||
def __init__(self, ble):
|
||||
self._ble = ble
|
||||
self._ble.active(True)
|
||||
self._ble.irq(handler=self._irq)
|
||||
self._ble.irq(self._irq)
|
||||
|
||||
self._reset()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user