From 5e41eeb6fa7e02bb4a56edd713627c23389fb623 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 2 May 2021 02:20:33 +0200 Subject: [PATCH] [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 --- pySim/ts_31_102.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/ts_31_102.py b/pySim/ts_31_102.py index de729be9..ae255f19 100644 --- a/pySim/ts_31_102.py +++ b/pySim/ts_31_102.py @@ -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)