mirror of
https://github.com/norohind/jubilant-system-core.git
synced 2025-04-14 02:27:13 +03:00
4 lines
139 B
Python
4 lines
139 B
Python
def dehexify(hex_str: str) -> str:
|
|
"""Converts string with hex chars to string"""
|
|
return bytes.fromhex(hex_str).decode('utf-8')
|