mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
8 lines
164 B
Python
8 lines
164 B
Python
|
|
def HEX(vals):
|
|
if vals is not None:
|
|
if type(vals) is int:
|
|
return "%.2x"%vals
|
|
return ' '.join('%.2x'%x for x in vals)
|
|
return ''
|