mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 06:48:16 +00:00
style: fix trezor.utils
This commit is contained in:
parent
8d9d4816da
commit
30b96a0f07
@ -3,7 +3,7 @@ import utime
|
|||||||
from micropython import const
|
from micropython import const
|
||||||
from trezorui import Display
|
from trezorui import Display
|
||||||
|
|
||||||
from trezor import io, loop, res, workflow, utils
|
from trezor import io, loop, res, utils, workflow
|
||||||
|
|
||||||
display = Display()
|
display = Display()
|
||||||
|
|
||||||
|
@ -1,7 +1,16 @@
|
|||||||
import gc
|
import gc
|
||||||
import sys
|
import sys
|
||||||
from trezorutils import halt, memcpy, set_mode_unprivileged # noqa: F401
|
from trezorutils import ( # noqa: F401
|
||||||
from trezorutils import GITREV, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, MODEL, EMULATOR # noqa: F401
|
EMULATOR,
|
||||||
|
GITREV,
|
||||||
|
MODEL,
|
||||||
|
VERSION_MAJOR,
|
||||||
|
VERSION_MINOR,
|
||||||
|
VERSION_PATCH,
|
||||||
|
halt,
|
||||||
|
memcpy,
|
||||||
|
set_mode_unprivileged,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def unimport_begin():
|
def unimport_begin():
|
||||||
|
Loading…
Reference in New Issue
Block a user