Convert format strings strings to f-strings (#23241)

* Convert all text strings to f-strings

Reformats all the text from the old "%-formatted" and .format(...) format to the newer f-string format, as defined in PEP 498. This requires Python 3.6+.

Flynt 0.69 was used to reformat the strings. 120 f-strings were created in 51 files.

F-strings are in general more readable, concise and performant. See also: https://www.python.org/dev/peps/pep-0498/#rationale

* revert pyextra changes

* revert ublox.py

Co-authored-by: Willem Melching <willem.melching@gmail.com>
old-commit-hash: 55390d273f
This commit is contained in:
Ewout ter Hoeven
2021-12-16 14:58:17 +01:00
committed by GitHub
parent 7b3e330def
commit a962365292
47 changed files with 95 additions and 96 deletions

View File

@@ -2,7 +2,7 @@
import sys
if len(sys.argv) < 4:
print("%s <route> <segment> <frame number>" % sys.argv[0])
print(f"{sys.argv[0]} <route> <segment> <frame number>")
print('example: ./fetch_image_from_route.py "02c45f73a2e5c6e9|2020-06-01--18-03-08" 3 500')
exit(0)
@@ -33,5 +33,5 @@ if frame >= fr.frame_count:
im = Image.fromarray(fr.get(frame, count=1, pix_fmt="rgb24")[0])
fn = "uxxx_"+route.replace("|", "_")+"_%d_%d.png" % (segment, frame)
im.save(fn)
print("saved %s" % fn)
print(f"saved {fn}")