mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-29 02:48:18 +00:00
14 lines
341 B
Python
14 lines
341 B
Python
|
|
||
|
# ../extmod/modtrezorconfig/modtrezorconfig.c
|
||
|
def get(app: int, key: int) -> bytes:
|
||
|
'''
|
||
|
Gets a value of given key for given app (or None if not set).
|
||
|
'''
|
||
|
|
||
|
# ../extmod/modtrezorconfig/modtrezorconfig.c
|
||
|
def set(app: int, key: int) -> bool:
|
||
|
'''
|
||
|
Sets a value of given key for given app.
|
||
|
Returns True on success.
|
||
|
'''
|