aboutsummaryrefslogtreecommitdiffstats
path: root/pySim
diff options
context:
space:
mode:
authorSupreeth Herle <herlesupreeth@gmail.com>2020-04-01 09:21:20 +0200
committerSupreeth Herle <herlesupreeth@gmail.com>2020-04-01 09:21:20 +0200
commite573ccb53cf475518294539ceb114a11a3535bcc (patch)
treebe812c271a9c05f030259bd4e6e5acb5ff2a61a6 /pySim
parentad10d66baf141a52c9080a5f236ccc9b059ed630 (diff)
Use read_binary function of card class to read GID2 and reduce code duplication
Diffstat (limited to 'pySim')
-rw-r--r--pySim/cards.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/pySim/cards.py b/pySim/cards.py
index c702608..d3b6262 100644
--- a/pySim/cards.py
+++ b/pySim/cards.py
@@ -160,13 +160,6 @@ class Card(object):
else:
return (None, sw)
- def read_gid2(self):
- (res, sw) = self._scc.read_binary(EF['GID2'])
- if sw == '9000':
- return (res, sw)
- else:
- return (None, sw)
-
# Read the (full) AID for either ISIM or USIM application
def read_aid(self, isim = False):