From: Yohann Pipeau Date: Wed, 6 Apr 2022 08:06:59 +0000 (+0200) Subject: Fix the Tuple representation when reading data from XML file with EFICAS X-Git-Tag: merge_uncertainty_odysee_1210~99 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1e6dccd6e7b39e8aafd5e1627455d3be611e9739;p=tools%2Feficas.git Fix the Tuple representation when reading data from XML file with EFICAS --- 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