From e62f82f7ede0219b742bb5c51ad210af87f9df3e Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Tue, 26 Mar 2024 14:25:05 +0100 Subject: [PATCH] Fix comments in main.py --- core/src/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main.py b/core/src/main.py index eba7ae6b3..ff9637ebe 100644 --- a/core/src/main.py +++ b/core/src/main.py @@ -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())