mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 03:50:58 +00:00
fix style
This commit is contained in:
parent
128bb83e1b
commit
e923b885af
6
.flake8
6
.flake8
@ -9,4 +9,8 @@ ignore =
|
|||||||
# E402: module level import not at top of file
|
# E402: module level import not at top of file
|
||||||
E402,
|
E402,
|
||||||
# E501: line too long
|
# E501: line too long
|
||||||
E501
|
E501,
|
||||||
|
# F403: star import used, unable to detect undefined names
|
||||||
|
F403,
|
||||||
|
# F405: name may be undefined, or defined from star imports
|
||||||
|
F405
|
||||||
|
@ -8,6 +8,7 @@ if __debug__:
|
|||||||
DEFAULT_CANCEL = res.load(ui.ICON_CLEAR)
|
DEFAULT_CANCEL = res.load(ui.ICON_CLEAR)
|
||||||
DEFAULT_LOCK = res.load(ui.ICON_LOCK)
|
DEFAULT_LOCK = res.load(ui.ICON_LOCK)
|
||||||
|
|
||||||
|
|
||||||
@unimport
|
@unimport
|
||||||
async def request_pin_on_display(ctx: wire.Context, code: int=None) -> str:
|
async def request_pin_on_display(ctx: wire.Context, code: int=None) -> str:
|
||||||
from trezor.messages.ButtonRequest import ButtonRequest
|
from trezor.messages.ButtonRequest import ButtonRequest
|
||||||
|
@ -10,6 +10,7 @@ CANCELLED = const(2)
|
|||||||
DEFAULT_CONFIRM = res.load(ui.ICON_CONFIRM)
|
DEFAULT_CONFIRM = res.load(ui.ICON_CONFIRM)
|
||||||
DEFAULT_CANCEL = res.load(ui.ICON_CLEAR)
|
DEFAULT_CANCEL = res.load(ui.ICON_CLEAR)
|
||||||
|
|
||||||
|
|
||||||
class ConfirmDialog(Widget):
|
class ConfirmDialog(Widget):
|
||||||
|
|
||||||
def __init__(self, content, confirm=DEFAULT_CONFIRM, cancel=DEFAULT_CANCEL):
|
def __init__(self, content, confirm=DEFAULT_CONFIRM, cancel=DEFAULT_CANCEL):
|
||||||
|
@ -13,8 +13,8 @@ BACKLIGHT_MAX = const(255)
|
|||||||
|
|
||||||
# color palette
|
# color palette
|
||||||
LIGHT_RED = rgb(0xFF, 0x00, 0x00)
|
LIGHT_RED = rgb(0xFF, 0x00, 0x00)
|
||||||
RED = rgb(0xE4, 0x57, 0x2E) # RED E4572E
|
RED = rgb(0xE4, 0x57, 0x2E) # RED E4572E
|
||||||
ACTIVE_RED = rgb(0xA6, 0x40, 0x22) # ACTIVE DARK RED A64022
|
ACTIVE_RED = rgb(0xA6, 0x40, 0x22) # ACTIVE DARK RED A64022
|
||||||
PINK = rgb(0xE9, 0x1E, 0x63)
|
PINK = rgb(0xE9, 0x1E, 0x63)
|
||||||
PURPLE = rgb(0x9C, 0x27, 0xB0)
|
PURPLE = rgb(0x9C, 0x27, 0xB0)
|
||||||
DEEP_PURPLE = rgb(0x67, 0x3A, 0xB7)
|
DEEP_PURPLE = rgb(0x67, 0x3A, 0xB7)
|
||||||
@ -23,8 +23,8 @@ BLUE = rgb(0x21, 0x96, 0xF3)
|
|||||||
LIGHT_BLUE = rgb(0x03, 0xA9, 0xF4)
|
LIGHT_BLUE = rgb(0x03, 0xA9, 0xF4)
|
||||||
CYAN = rgb(0x00, 0xBC, 0xD4)
|
CYAN = rgb(0x00, 0xBC, 0xD4)
|
||||||
TEAL = rgb(0x00, 0x96, 0x88)
|
TEAL = rgb(0x00, 0x96, 0x88)
|
||||||
GREEN = rgb(0x4C, 0xC1, 0x48) # GREEN 4CC148
|
GREEN = rgb(0x4C, 0xC1, 0x48) # GREEN 4CC148
|
||||||
ACTIVE_GREEN = rgb(0x1A, 0x8C, 0x14) # ACTIVE DARK GREEN 1A8C14
|
ACTIVE_GREEN = rgb(0x1A, 0x8C, 0x14) # ACTIVE DARK GREEN 1A8C14
|
||||||
LIGHT_GREEN = rgb(0x87, 0xCE, 0x26)
|
LIGHT_GREEN = rgb(0x87, 0xCE, 0x26)
|
||||||
LIME = rgb(0xCD, 0xDC, 0x39)
|
LIME = rgb(0xCD, 0xDC, 0x39)
|
||||||
YELLOW = rgb(0xFF, 0xEB, 0x3B)
|
YELLOW = rgb(0xFF, 0xEB, 0x3B)
|
||||||
|
Loading…
Reference in New Issue
Block a user