We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d828f commit 009ea65Copy full SHA for 009ea65
1 file changed
rest/helper.py
@@ -207,7 +207,10 @@ def __any_struct(corba_any):
207
'value': []
208
}
209
for a in corba_any.value.value():
210
- ret['value'].append(PropertyHelper.__any_simple(a))
+ if 'orb.create_sequence_tc' in str(a.value._t):
211
+ ret['value'].append(PropertyHelper.__any_simple_seq(a))
212
+ else:
213
+ ret['value'].append(PropertyHelper.__any_simple(a))
214
return ret
215
216
@staticmethod
0 commit comments