mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-16 03:28:09 +00:00
9 lines
265 B
Python
9 lines
265 B
Python
from trezor import utils
|
|
|
|
if utils.UI_LAYOUT == "TT":
|
|
from .tt.reset import * # noqa: F401,F403
|
|
elif utils.UI_LAYOUT == "TR":
|
|
from .tr.reset import * # noqa: F401,F403
|
|
elif utils.UI_LAYOUT == "MERCURY":
|
|
from .mercury.reset import * # noqa: F401,F403
|