1
0
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:
Pavol Rusnak 2018-08-31 17:15:10 +02:00
parent 8d9d4816da
commit 30b96a0f07
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 12 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import utime
from micropython import const
from trezorui import Display
from trezor import io, loop, res, workflow, utils
from trezor import io, loop, res, utils, workflow
display = Display()

View File

@ -1,7 +1,16 @@
import gc
import sys
from trezorutils import halt, memcpy, set_mode_unprivileged # noqa: F401
from trezorutils import GITREV, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, MODEL, EMULATOR # noqa: F401
from trezorutils import ( # noqa: F401
EMULATOR,
GITREV,
MODEL,
VERSION_MAJOR,
VERSION_MINOR,
VERSION_PATCH,
halt,
memcpy,
set_mode_unprivileged,
)
def unimport_begin():