8000 black · Santhosh0505/botbuilder-python@a1ece41 · GitHub
[go: up one dir, main page]

Skip to content

Commit a1ece41

Browse files
committed
black
1 parent 41acd02 commit a1ece41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libraries/botbuilder-ai/botbuilder/ai/qna/utils/generate_answer_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ async def _format_qna_result(
212212
answers_within_threshold, key=lambda ans: ans["score"], reverse=True
213213
)
214214

215-
answers_as_query_results = [QueryResult().deserialize(answer) for answer in sorted_answers]
215+
answers_as_query_results = [
216+
QueryResult().deserialize(answer) for answer in sorted_answers
217+
]
216218

217219
active_learning_enabled = (
218220
json_res["activeLearningEnabled"]

0 commit comments

Comments
 (0)
0