code style: add fstrings

This commit is contained in:
manasghandat
2023-03-09 17:19:34 +05:30
parent 1f80791f8f
commit 05dbdd4473
37 changed files with 200 additions and 234 deletions

View File

@@ -62,5 +62,5 @@ def test_bulk_process(tmpdir):
def run_program(script_path, args):
args = [sys.executable] + [script_path] + args
print("running: '%s'" % args)
print(f"running: '{args}'")
return subprocess.run(args)