mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-27 18:24:58 +00:00
check if data file value is a string before returning it w/ burnettk
This commit is contained in:
parent
7bb7543a42
commit
1ee8ba252e
@ -279,7 +279,8 @@ class ProcessInstanceService:
|
||||
yield (identifier, list_value, list_index)
|
||||
if isinstance(list_value, dict) and len(list_value) == 1:
|
||||
for v in list_value.values():
|
||||
yield (identifier, v, list_index)
|
||||
if isinstance(v, str):
|
||||
yield (identifier, v, list_index)
|
||||
|
||||
@classmethod
|
||||
def file_data_models_for_data(
|
||||
|
Loading…
x
Reference in New Issue
Block a user