From 1db33115ead7b1cdc64c3388acf7c90b9e2f38eb Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Fri, 5 Nov 2021 16:56:23 +0100 Subject: [PATCH] utils: cosmetic: remove stray comment The comment is already covered by the help string, lets remove it. Change-Id: Ide2080ddb898441b6af70e32511b33ced23d0023 --- pySim/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pySim/utils.py b/pySim/utils.py index 8f2b2e90..521abd68 100644 --- a/pySim/utils.py +++ b/pySim/utils.py @@ -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])