mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-30 20:02:34 +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')
|