mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-22 13:21:03 +00:00
core: Fix mypy warnings.
This commit is contained in:
parent
39b4376b65
commit
60f6ab9087
@ -8,7 +8,7 @@ if __debug__:
|
|||||||
from apps.debug import confirm_signal
|
from apps.debug import confirm_signal
|
||||||
|
|
||||||
if False:
|
if False:
|
||||||
from typing import Any, Callable
|
from typing import Any, Callable, Optional
|
||||||
from trezor import ui
|
from trezor import ui
|
||||||
from trezor.ui.confirm import ButtonContent, ButtonStyleType
|
from trezor.ui.confirm import ButtonContent, ButtonStyleType
|
||||||
from trezor.ui.loader import LoaderStyleType
|
from trezor.ui.loader import LoaderStyleType
|
||||||
@ -18,9 +18,9 @@ async def confirm(
|
|||||||
ctx: wire.Context,
|
ctx: wire.Context,
|
||||||
content: ui.Component,
|
content: ui.Component,
|
||||||
code: int = ButtonRequestType.Other,
|
code: int = ButtonRequestType.Other,
|
||||||
confirm: ButtonContent = Confirm.DEFAULT_CONFIRM,
|
confirm: Optional[ButtonContent] = Confirm.DEFAULT_CONFIRM,
|
||||||
confirm_style: ButtonStyleType = Confirm.DEFAULT_CONFIRM_STYLE,
|
confirm_style: ButtonStyleType = Confirm.DEFAULT_CONFIRM_STYLE,
|
||||||
cancel: ButtonContent = Confirm.DEFAULT_CANCEL,
|
cancel: Optional[ButtonContent] = Confirm.DEFAULT_CANCEL,
|
||||||
cancel_style: ButtonStyleType = Confirm.DEFAULT_CANCEL_STYLE,
|
cancel_style: ButtonStyleType = Confirm.DEFAULT_CANCEL_STYLE,
|
||||||
major_confirm: bool = False,
|
major_confirm: bool = False,
|
||||||
) -> bool:
|
) -> bool:
|
||||||
|
Loading…
Reference in New Issue
Block a user