Skip to content

Commit 9e5a564

Browse files
Fix "SyntaxWarning: invalid escape sequence"
1 parent b218818 commit 9e5a564

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def find_run(self, start_time: float, distinct_id: str) -> github.WorkflowRun:
6060
raise Exception(
6161
"Timed out trying to find the workflow run\n"
6262
"Make sure the workflow sets distinct_id as a step name, e.g.:\n"
63-
" - name: Echo distinct ID $\{\{ inputs.distinct_id \}\}\n"
64-
" run: echo $\{\{ inputs.distinct_id \}\}\n"
63+
" - name: Echo distinct ID ${{ inputs.distinct_id }}\n"
64+
" run: echo ${{ inputs.distinct_id }}\n"
6565
"Place this step as early in the workflow as possible."
6666
)
6767

0 commit comments

Comments
 (0)