From 1b94835aac3268a32bfa4ce0df585dbb97457a06 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 11 Nov 2021 07:23:36 -0500 Subject: style: convert more string formatting to f-strings --- tests/gold/annotate/anno_dir/d_b039179a8a4ce2c2_b.py,cover | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/gold/annotate') diff --git a/tests/gold/annotate/anno_dir/d_b039179a8a4ce2c2_b.py,cover b/tests/gold/annotate/anno_dir/d_b039179a8a4ce2c2_b.py,cover index 90d076f1..382f1901 100644 --- a/tests/gold/annotate/anno_dir/d_b039179a8a4ce2c2_b.py,cover +++ b/tests/gold/annotate/anno_dir/d_b039179a8a4ce2c2_b.py,cover @@ -1,3 +1,3 @@ > def b(x): -> msg = "x is %s" % x +> msg = f"x is {x}" > print(msg) -- cgit v1.2.1