diff --git a/core/embed/upymod/modtrezorio/modtrezorio-ble.h b/core/embed/upymod/modtrezorio/modtrezorio-ble.h index 61fe3f9ddf..dabe3d77d1 100644 --- a/core/embed/upymod/modtrezorio/modtrezorio-ble.h +++ b/core/embed/upymod/modtrezorio/modtrezorio-ble.h @@ -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 /// """ diff --git a/core/mocks/generated/trezorio/ble.pyi b/core/mocks/generated/trezorio/ble.pyi index c7cfbd6fa7..31a957ffe8 100644 --- a/core/mocks/generated/trezorio/ble.pyi +++ b/core/mocks/generated/trezorio/ble.pyi @@ -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 """