1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-12 14:16:06 +00:00

fix(core): change default value of model_variant in device properties to None

[no changelog]
This commit is contained in:
M1nd3r 2025-02-28 15:36:12 +01:00
parent 9ba89df979
commit 073aaa8614

View File

@ -157,7 +157,7 @@ def _get_device_properties(iface: WireInterface) -> ThpDeviceProperties:
return ThpDeviceProperties(
pairing_methods=get_enabled_pairing_methods(iface),
internal_model=utils.INTERNAL_MODEL,
model_variant=0,
model_variant=None,
protocol_version_major=2,
protocol_version_minor=0,
)