Skip to content

Commit

Permalink
testing: to not unnecessary mention
Browse files Browse the repository at this point in the history
  • Loading branch information
SD-13 committed Dec 4, 2024
1 parent 0eb4a72 commit 6b11a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def generate_message(
with open(template_path, 'r', encoding='UTF-8') as file:
message = file.read()

message = re.sub(r'\{\{ *username *\}\}', '@' + username, message)
message = re.sub(r'\{\{ *username *\}\}', + username, message)
message = re.sub(r'\{\{ *pr_list *\}\}', '\n'.join(pr_list_messages), message)

return message
Expand Down

0 comments on commit 6b11a6b

Please sign in to comment.