diff options
author | Angus Gratton <angus@redyak.com.au> | 2023-08-09 18:18:50 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-08-16 16:13:27 +1000 |
commit | 801910fc837919688b98e9abce04a679f14037be (patch) | |
tree | 5a58f25b9e938e3fa7145c5bb617ae83dc9f3ac9 /examples/bluetooth/ble_uart_repl.py | |
parent | ef864a4aa4370ea1b659496e4d0f145bbc28bec3 (diff) | |
download | micropython-801910fc837919688b98e9abce04a679f14037be.tar.gz micropython-801910fc837919688b98e9abce04a679f14037be.zip |
all: Add missing imports for micropython.const.
Found by Ruff checking F821.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
Diffstat (limited to 'examples/bluetooth/ble_uart_repl.py')
-rw-r--r-- | examples/bluetooth/ble_uart_repl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/bluetooth/ble_uart_repl.py b/examples/bluetooth/ble_uart_repl.py index 7d92c1f318..5812a5cc13 100644 --- a/examples/bluetooth/ble_uart_repl.py +++ b/examples/bluetooth/ble_uart_repl.py @@ -7,6 +7,7 @@ import bluetooth import io import os import micropython +from micropython import const import machine from ble_uart_peripheral import BLEUART |