diff --git a/core/src/trezor/utils.py b/core/src/trezor/utils.py index 11ef808ff9..6fcfb085f1 100644 --- a/core/src/trezor/utils.py +++ b/core/src/trezor/utils.py @@ -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")