[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
diff --git a/pySim/ts_31_102.py b/pySim/ts_31_102.py
index de729be..ae255f1 100644
--- a/pySim/ts_31_102.py
+++ b/pySim/ts_31_102.py
@@ -381,7 +381,7 @@
         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)