check if data file value is a string before returning it w/ burnettk
This commit is contained in:
parent
925e784dca
commit
2feaf68132
|
@ -279,6 +279,7 @@ class ProcessInstanceService:
|
|||
yield (identifier, list_value, list_index)
|
||||
if isinstance(list_value, dict) and len(list_value) == 1:
|
||||
for v in list_value.values():
|
||||
if isinstance(v, str):
|
||||
yield (identifier, v, list_index)
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in New Issue