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
diff --git a/pySim/ts_102_221.py b/pySim/ts_102_221.py
index 256a697..b8fce1b 100644
--- a/pySim/ts_102_221.py
+++ b/pySim/ts_102_221.py
@@ -294,4 +294,4 @@
             },
           }
 
-        super().__init__('UICC', 'ETSI TS 102 221', files, sw)
+        super().__init__('UICC', desc='ETSI TS 102 221', files_in_mf=files, sw=sw)