From ea79dc307e733cae41c66af11b57d3c40c974c6b Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 4 Dec 2019 19:24:04 +0200 Subject: [PATCH] STY: f-strings --- ci/print_skipped.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/print_skipped.py b/ci/print_skipped.py index 8fd92ab9622ba..72822fa2d3c7f 100755 --- a/ci/print_skipped.py +++ b/ci/print_skipped.py @@ -5,7 +5,7 @@ def main(filename): if not os.path.isfile(filename): - raise RuntimeError(f"Could not find junit file {filename!r}") + raise RuntimeError(f"Could not find junit file {repr(filename)}") tree = et.parse(filename) root = tree.getroot()