mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-13 17:00:59 +00:00
8 lines
188 B
Python
8 lines
188 B
Python
from trezor.messages.Success import Success
|
|
from apps.common import storage
|
|
|
|
|
|
async def apply_flags(ctx, msg):
|
|
storage.set_flags(msg.flags)
|
|
return Success(message='Flags applied')
|