From 1e6dccd6e7b39e8aafd5e1627455d3be611e9739 Mon Sep 17 00:00:00 2001 From: Yohann Pipeau Date: Wed, 6 Apr 2022 10:06:59 +0200 Subject: [PATCH] Fix the Tuple representation when reading data from XML file with EFICAS --- Efi2Xsd/MCAccasXML.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Efi2Xsd/MCAccasXML.py b/Efi2Xsd/MCAccasXML.py index 8563bbe0..6100737b 100755 --- a/Efi2Xsd/MCAccasXML.py +++ b/Efi2Xsd/MCAccasXML.py @@ -649,7 +649,7 @@ class X_JDC (X_MCCOMPO): if hasattr(objAAnalyser,'sdType') and objAAnalyser.sdType == 'Tuple': liste=[] for (k,v) in dictArgs.items(): liste.append(v) - return liste + return tuple(liste) if debug : print ('fin pour ',objAAnalyser) return dictArgs -- 2.39.2