funga/src/common.py
2020-08-04 23:41:31 +02:00

6 lines
86 B
Python

def strip_hex_prefix(hx):
if hx[:2] == '0x':
return hx[2:]
return hx