Skip to content

Commit

Permalink
Remove f-string without formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
manicmaniac committed Jan 8, 2024
1 parent ded43f7 commit b0d8b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/update-xcode
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Readme(object):
self.max_xcode_version = matched.group(1)
break
else:
raise RuntimeError(f'Does not contain Xcode version string')
raise RuntimeError('Does not contain Xcode version string')
f.seek(0)
self.contents = f.read()

Expand Down

0 comments on commit b0d8b10

Please sign in to comment.