utils: cosmetic: remove stray comment

The comment is already covered by the help string, lets remove it.

Change-Id: Ide2080ddb898441b6af70e32511b33ced23d0023
This commit is contained in:
Philipp Maier 2021-11-05 16:56:23 +01:00 committed by dexter
parent 796ca3daf9
commit 1db33115ea
1 changed files with 0 additions and 1 deletions

View File

@ -56,7 +56,6 @@ def s2h(s:str) -> Hexstr:
b.extend(map(ord, s))
return b2h(b)
# List of bytes to string
def i2s(s:List[int]) -> str:
"""convert from a list of integers to an ASCII string"""
return ''.join([chr(x) for x in s])