1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-29 18:08:19 +00:00

boot.py, gitignore

This commit is contained in:
tychovrahe 2022-09-06 14:58:14 +02:00
parent c408e3f054
commit 16aa18cccc
2 changed files with 4 additions and 2 deletions

2
core/.gitignore vendored
View File

@ -8,3 +8,5 @@ tests/trezor_monero_tests*
.coverage.*
htmlcov/
mypy_report
/cmake-build-debug/
/CMakeLists.txt

View File

@ -30,8 +30,8 @@ async def bootscreen() -> None:
config.init(show_pin_timeout)
if __debug__ and not utils.EMULATOR:
config.wipe()
# if __debug__ and not utils.EMULATOR:
# config.wipe()
loop.schedule(bootscreen())
loop.run()