We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a15017 commit a0d3031Copy full SHA for a0d3031
apps/application/serializers/application_chat.py
@@ -151,7 +151,7 @@ def paragraph_list_to_string(paragraph_list):
151
@staticmethod
152
def to_row(row: Dict):
153
details = row.get('details') or {}
154
- padding_problem_text = ' '.join(node.get("answer", "") for key, node in details.items() if
+ padding_problem_text = ' '.join((node.get("answer", "") or "") for key, node in details.items() if
155
node.get("type") == 'question-node')
156
search_dataset_node_list = [(key, node) for key, node in details.items() if
157
node.get("type") == 'search-dataset-node' or node.get(
0 commit comments