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