style: fix trezor.utils

pull/25/head
Pavol Rusnak 6 years ago
parent 8d9d4816da
commit 30b96a0f07
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -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…
Cancel
Save