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
This commit is contained in:
Philipp Maier 2021-03-31 17:28:06 +02:00
parent 228c98e4c6
commit dd2091a3e0
1 changed files with 1 additions and 1 deletions

View File

@ -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)