From fb98dd6d6e9162d18c665e30c97e0ae4781e780f Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 19 Jul 2018 12:00:44 +0200 Subject: [PATCH] commands: depend on pytlv only when it is actually needed Some of the USIM-Card programming implementations do not need to look at card responses, which means they also do not have to parse TLV data. Lets depend on pytlv only in cases where TLV data has to be parsed so that useser of cards that do not need at can go without installing pytlv. Change-Id: Ida841d74d9581e7f395751b0f74556a06a038de6 --- pySim/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/commands.py b/pySim/commands.py index 9e16b0e1..73c2247f 100644 --- a/pySim/commands.py +++ b/pySim/commands.py @@ -23,7 +23,6 @@ # from pySim.utils import rpad, b2h -from pytlv.TLV import * class SimCardCommands(object): def __init__(self, transport): @@ -35,6 +34,7 @@ class SimCardCommands(object): def __get_len_from_tlv(self, fcp): # see also: ETSI TS 102 221, chapter 11.1.1.3.1 Response for MF, # DF or ADF + from pytlv.TLV import TLV tlvparser = TLV(['82', '83', '84', 'A5', '8a', '8b', '8c', '80', 'ab', 'c6', '81', '88']) # pytlv is case sensitive!