[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:
Vadim Yanitskiy
2021-05-02 02:20:33 +02:00
committed by laforge
parent 85302d6757
commit 5e41eeb6fa

View File

@@ -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)