From 4bda74f6223e32ee33d751e2796fdcb02a01c780 Mon Sep 17 00:00:00 2001 From: Eric Fayolle Date: Fri, 23 Sep 2022 12:24:25 +0200 Subject: [PATCH] =?utf8?q?Correction=20du=20retour=20du=20bug=20avec=20une?= =?utf8?q?=20seule=20selection=20de=20fonction=20d'agg=C3=A9gation?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- generator/generator_UQ.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator/generator_UQ.py b/generator/generator_UQ.py index 65824151..6eac0f42 100644 --- a/generator/generator_UQ.py +++ b/generator/generator_UQ.py @@ -241,13 +241,13 @@ class UQGenerator(PythonGenerator): variableOutputList = nomOutputList[0:-2], nomVarPostraite = nomVarPostraite, fonctionAggregationList = nomFctAggPyList[0:-2], - shortVariableOutputList = nomShortVariableOutputList # Avoid a Persalys Bug + shortVariableOutputList = nomShortVariableOutputList[0:-2] # Avoid a Persalys Bug ) self.txtGetAllResults += tmpGetResultCall self.chaineDesVariablesOutputEncodee=self.chaineDesVariablesOutputEncodee[0:-2] self.chaineDesShortVariablesOutput = reduce(lambda x,y:x+y, - [ "a"+str(i)+', ' for i in range(index)]) + [ "a"+str(i)+', ' for i in range(index)])[0:-2] sectionExecution = etapeIncertitude.getChildOrChildInBloc('Execution')[0] self.NbDeBranches = sectionExecution.getChildOrChildInBloc('NbDeBranches').valeur -- 2.39.2