Skip to content

Commit 1323ef6

Browse files
author
Sofiya Nuryyeva
committed
fixed python version issue
1 parent 997be1f commit 1323ef6

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

tests/e2e/utils/utils.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -562,10 +562,8 @@ def replace_placeholders(context: Context, text: str) -> str:
562562
result = result.replace(
563563
"{CONVERSATION_ID}", context.response_data["conversation_id"]
564564
)
565-
if hasattr(context, "response_data") and context.response_data.get(
566-
"conversation"
567-
):
568-
result = result.replace(
569-
"{CONVERSATION_ID}", context.response_data["conversation"]
565+
if hasattr(context, "response_data") and context.response_data.get("conversation"):
566+
result = result.replace(
567+
"{CONVERSATION_ID}", context.response_data["conversation"]
570568
)
571569
return result

0 commit comments

Comments
 (0)