aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pySim/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pySim/utils.py b/pySim/utils.py
index 8f2b2e9..521abd6 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])