Fix comments in main.py

M1nd3r 1 month ago
parent 9a1ea47bec
commit a889b73d8e

@ -15,7 +15,7 @@ utils.presize_module("trezor", 30)
# storage imports storage.common, storage.cache and storage.device.
# These import trezor, trezor.config (which is a C module), trezor.utils, and each other.
import storage # noqa: E402
import storage # noqa: E402
# we will need space for 12 items in the storage module
utils.presize_module("storage", 12)
@ -34,7 +34,7 @@ import trezor.pin # noqa: F401, E402
# === Prepare the USB interfaces first. Do not connect to the host yet.
# usb imports trezor.utils and trezor.io which is a C module
import usb # noqa:E402
import usb # noqa:E402
# create an unimport manager that will be reused in the main loop
unimport_manager = utils.unimport()
@ -45,7 +45,7 @@ with unimport_manager:
del boot
# start the USB
import storage.device # noqa:E402
import storage.device # noqa:E402
usb.bus.open(storage.device.get_device_id())

Loading…
Cancel
Save