[pylint] Fix reference to undefined variable 'in_hex'
pySim/ts_31_102.py:384:36: E0602: Undefined variable 'in_hex' (undefined-variable) Change-Id: I094e61c78621f08108f6ad1c71a05bc1e13a895d
This commit is contained in:
@@ -381,7 +381,7 @@ class EF_SUCI_Calc_Info(TransparentEF):
|
||||
return hnet_pubkey_list
|
||||
|
||||
def _decode_bin(self, in_bin):
|
||||
return self._decode_hex(b2h(in_hex))
|
||||
return self._decode_hex(b2h(in_bin))
|
||||
|
||||
def _decode_hex(self, in_hex):
|
||||
in_bytes = h2b(in_hex)
|
||||
|
||||
Reference in New Issue
Block a user