Added set of set handling (thru concept ISA)
This commit is contained in:
@@ -139,7 +139,7 @@ def concept_to_python(concept_node):
|
||||
value = node.get_prop(field)
|
||||
if isinstance(value, list) or isinstance(value, Concept) and value.key == str(BuiltinConcepts.LIST):
|
||||
lst = []
|
||||
for i in value:
|
||||
for i in value.body:
|
||||
lst.append(_transform(i))
|
||||
setattr(ast_object, field, lst)
|
||||
elif isinstance(value, NodeConcept):
|
||||
|
||||
Reference in New Issue
Block a user