From 575eade04462f2c73b400bba6b1a6d5c621ec7a7 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 29 Aug 2023 13:29:22 -0300 Subject: [PATCH] [DOCs] Fixed missing f-string marker --- kibot/config_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/config_reader.py b/kibot/config_reader.py index 5244befd..a4d50ef0 100644 --- a/kibot/config_reader.py +++ b/kibot/config_reader.py @@ -974,7 +974,7 @@ def print_preflights_help(rst): help, rest = reformat_text(help, ind_size) if rest: help += '\n'+rest - index = ':index:`: ` ' if rst else '' + index = f':index:`: ` ' if rst else '' print(f'- {extra}**{n}**: {index}{help}.') if options: print_output_options(n, options, ind_size, 'preflight - '+n)