From 550506799db748af298754b3d297b88f722544a6 Mon Sep 17 00:00:00 2001 From: SONOLET Aymeric Date: Thu, 11 Jan 2024 13:17:21 +0100 Subject: [PATCH] fix: initialise set and not dict --- src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py b/src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py index 7eaa6b278..15f3d7db7 100644 --- a/src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py +++ b/src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py @@ -268,7 +268,7 @@ class PublishToStudyFeature(ModelAPI.ModelAPI_Feature): Part of the "execute" method: processes the Fields of res result publication. """ - allFieldsProcessed = {} + allFieldsProcessed = set() allRefFields = [] allRefFields.append(ModelAPI.referencedFeatures(res, "Field", True)) resShape = res.shape() -- 2.39.2