1
0
mirror of https://github.com/norohind/jubilant-system-core.git synced 2025-07-07 12:18:52 +03:00

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')