Skip to content

Commit a17e914

Browse files
committed
Removed neccessary backslash
1 parent b433326 commit a17e914

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/convert_to_html_tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def main():
117117
# Processing pull-requests
118118
pull_requests = details['pull-request-number']
119119
pull_requests_list = [
120-
f'<a href="https://github.com/{REPO_NAME}/pull/{pr}" title="visit pr \#{pr}">{pr}</a>' for pr in pull_requests]
120+
f'<a href="https://github.com/{REPO_NAME}/pull/{pr}" title="visit pr #{pr}">{pr}</a>' for pr in pull_requests]
121121
pull_requests_output = ', '.join(pull_requests_list)
122122

123123
# Processing demo-path

.github/scripts/update_index_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def main():
115115
# Processing pull-requests
116116
pull_requests = details['pull-request-number']
117117
pull_requests_list = [
118-
f'[#{pr}](https://github.com/{REPO_NAME}/pull/{pr} "visit pr \#{pr}")' for pr in pull_requests]
118+
f'[#{pr}](https://github.com/{REPO_NAME}/pull/{pr} "visit pr #{pr}")' for pr in pull_requests]
119119
pull_requests_output = ', '.join(pull_requests_list)
120120

121121
# Processing demo-path

0 commit comments

Comments
 (0)