From 87fe5e58c2013b4b1949836c142993464b153237 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Tue, 2 May 2023 13:39:00 +0200 Subject: [doc] Apply black on the documentation where it makes sense (#8650) Co-authored-by: Daniel van Noord <13665637+DanielNoord@users.noreply.github.com> --- doc/data/messages/c/consider-using-f-string/good.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/data/messages/c/consider-using-f-string/good.py') diff --git a/doc/data/messages/c/consider-using-f-string/good.py b/doc/data/messages/c/consider-using-f-string/good.py index eec5abf0f..f7913fa44 100644 --- a/doc/data/messages/c/consider-using-f-string/good.py +++ b/doc/data/messages/c/consider-using-f-string/good.py @@ -1,3 +1,3 @@ -menu = ('eggs', 'spam', 42.4) +menu = ("eggs", "spam", 42.4) f_string_order = f"{menu[0]} and {menu[1]}: {menu[2]:0.2f} ยค" -- cgit v1.2.1