Extend parsing and printing of Service table to ISIM

Change-Id: I7657432df76e9de5e4e5fdecfd717d8363de8270
This commit is contained in:
Supreeth Herle 2020-04-20 14:48:55 +02:00
parent 8b72c27270
commit df33037e42
1 changed files with 4 additions and 1 deletions

View File

@ -331,7 +331,10 @@ def dec_st(st, table="sim"):
Parses the EF S/U/IST and prints the list of available services in EF S/U/IST
"""
if table == "usim":
if table == "isim":
from pySim.ts_31_103 import EF_IST_map
lookup_map = EF_IST_map
elif table == "usim":
from pySim.ts_31_102 import EF_UST_map
lookup_map = EF_UST_map
else: