From ab3e04fdb18bffea05c24392c67841bfcbeec371 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 17 Aug 2024 10:07:35 +0200 Subject: [PATCH] pySim.esim.saip: Fix typo in ProfileElementAKA.set_mapping() method Change-Id: Icd1594c6c2a8536a4ab8d1fc698307f05f539bdb --- pySim/esim/saip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py index dfc4584d..037f7cc7 100644 --- a/pySim/esim/saip/__init__.py +++ b/pySim/esim/saip/__init__.py @@ -932,7 +932,7 @@ class ProfileElementAKA(ProfileElement): def set_mapping(self, aid: bytes, options: int = 6): """Configure akaParametes for a mapping from another AID.""" - self.decoded['algoConfiguration'] = ('mappingParamete', { + self.decoded['algoConfiguration'] = ('mappingParameter', { 'mappingOptions': bytes([options]), 'mappingSource': aid, })