fixeria submitted this change.
3 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
utils: dec_plmn(): remove redundant call
Change-Id: Ic95c3992ed57eb8fee952ec2dc7f092dd7689579
---
M pySim/utils.py
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/pySim/utils.py b/pySim/utils.py
index 1fdcefe..0417366 100644
--- a/pySim/utils.py
+++ b/pySim/utils.py
@@ -139,7 +139,6 @@
def dec_plmn(threehexbytes: Hexstr) -> dict:
res = {'mcc': "0", 'mnc': "0"}
- dec_mcc_from_plmn_str(threehexbytes)
res['mcc'] = dec_mcc_from_plmn_str(threehexbytes)
res['mnc'] = dec_mnc_from_plmn_str(threehexbytes)
return res
To view, visit change 42383. To unsubscribe, or for help writing mail filters, visit settings.