Skip to content

Commit

Permalink
Fix stray quote
Browse files Browse the repository at this point in the history
  • Loading branch information
tstellar committed Jan 14, 2024
1 parent b93f3d6 commit 00c4ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/git/code-format-helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def update_pr(self, comment_text: str, args: FormatArgs, create_new: bool) -> No

if args.write_comment_to_file:
with open('pr', 'w') as f:
f.write(f'{{"number":{pr.number}"')
f.write(f'{{"number":{pr.number}')
if existing_comment:
f.write(f',"id":{existing_comment.id}')
f.write("}")
Expand Down

0 comments on commit 00c4ad5

Please sign in to comment.