laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/37845?usp=email )
Change subject: pySim.esim.saip: Fix typo in ProfileElementAKA.set_mapping() method ......................................................................
pySim.esim.saip: Fix typo in ProfileElementAKA.set_mapping() method
Change-Id: Icd1594c6c2a8536a4ab8d1fc698307f05f539bdb --- M pySim/esim/saip/__init__.py 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/45/37845/1
diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py index 8773d3b..c622314 100644 --- a/pySim/esim/saip/__init__.py +++ b/pySim/esim/saip/__init__.py @@ -932,7 +932,7 @@
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, })