mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-02 04:18:20 +00:00
13 lines
222 B
Python
13 lines
222 B
Python
from trezorutils import halt
|
|
|
|
if not __debug__:
|
|
halt("Debugging is disabled")
|
|
|
|
if __debug__:
|
|
save_screen = False
|
|
save_screen_directory = "."
|
|
|
|
layout_watcher = False
|
|
|
|
reset_internal_entropy: bytes = b""
|