1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-15 23:05:45 +00:00

fix(core): annotation typo

[no changelog]
This commit is contained in:
Martin Milata 2025-04-08 16:27:44 +02:00
parent 0d55e1a70b
commit e024385b07
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(
mod_trezorio_BLE_start_advertising_obj, 1, 2,
mod_trezorio_BLE_start_advertising);
/// def stop_advertising(whitelist: bool) -> bool:
/// def stop_advertising() -> bool:
/// """
/// Stop advertising
/// """

View File

@ -31,7 +31,7 @@ def start_advertising(whitelist: bool, name: str | None) -> bool:
# upymod/modtrezorio/modtrezorio-ble.h
def stop_advertising(whitelist: bool) -> bool:
def stop_advertising() -> bool:
"""
Stop advertising
"""