From dd2091a3e0125eb7a47355be512eea1063cd6383 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Wed, 31 Mar 2021 17:28:06 +0200 Subject: [PATCH] ts_102_221: use keywords to avoid conflicts with positional args The Change I83d718ff9c3ff6aef47930f38d7f50424f9b880f removes the keyword arguments from the CardProfile class constructor. This requires us to use the keywords during instantiation since we can not rely on the position anymore. Change-Id: Ia62597c59287848662dbbedcc38ba90f183c4aca --- pySim/ts_102_221.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/ts_102_221.py b/pySim/ts_102_221.py index 256a6971..b8fce1b4 100644 --- a/pySim/ts_102_221.py +++ b/pySim/ts_102_221.py @@ -294,4 +294,4 @@ class CardProfileUICC(CardProfile): }, } - super().__init__('UICC', 'ETSI TS 102 221', files, sw) + super().__init__('UICC', desc='ETSI TS 102 221', files_in_mf=files, sw=sw)