1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-21 12:02:19 +00:00

docs(core): fix get_bytes_as_str docstring

[no changelog]
This commit is contained in:
Roman Zeyde 2025-02-11 21:20:56 +02:00 committed by Roman Zeyde
parent 13c078f8af
commit f4ebc0d9d8

View File

@ -134,7 +134,7 @@ if __debug__:
mem_info(True)
def get_bytes_as_str(a: bytes) -> str:
"""Converts the provided bytes to a hexadecimal string (decoded as`utf-8`)."""
"""Converts the provided bytes to a hexadecimal string (decoded as `utf-8`)."""
return hexlify(a).decode("utf-8")