Run pyupgrade --py38-plus (#590)

This commit is contained in:
Inada Naoki
2023-05-09 14:10:53 +09:00
committed by GitHub
parent 418b68dc5f
commit 1f906e66c4
8 changed files with 14 additions and 15 deletions

View File

@ -29,7 +29,7 @@ if __name__ == "__main__":
data[value].add(name)
for value, names in sorted(data.items()):
for name in sorted(names):
print("{} = {}".format(name, value))
print(f"{name} = {value}")
if error_last is not None:
print("ERROR_LAST = %s" % error_last)