chore: fix invalid escape sequences by applying W605 rule (#4851)

This commit is contained in:
Bowen Liang
2024-06-02 10:02:37 +08:00
committed by GitHub
parent 23498883d4
commit b234710af9
3 changed files with 8 additions and 7 deletions

View File

@@ -305,7 +305,7 @@ class WorkflowConverter:
}
request_body_json = json.dumps(request_body)
request_body_json = request_body_json.replace('\{\{', '{{').replace('\}\}', '}}')
request_body_json = request_body_json.replace(r'\{\{', '{{').replace(r'\}\}', '}}')
http_request_node = {
"id": f"http_request_{index}",