From df33037e4212bcc6449bde12ae4b96058406fdae Mon Sep 17 00:00:00 2001 From: Supreeth Herle Date: Mon, 20 Apr 2020 14:48:55 +0200 Subject: [PATCH] Extend parsing and printing of Service table to ISIM Change-Id: I7657432df76e9de5e4e5fdecfd717d8363de8270 --- pySim/utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pySim/utils.py b/pySim/utils.py index 56f9706b..1980685f 100644 --- a/pySim/utils.py +++ b/pySim/utils.py @@ -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: