From f0b6240e82177c9544beab88e5897471195d0507 Mon Sep 17 00:00:00 2001 From: Joe Edwards <80713360+Joseph-Edwards@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:14:25 +0100 Subject: [PATCH] Fix typo --- etc/check_doc_order.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/check_doc_order.py b/etc/check_doc_order.py index 52b1216d7..578c773d3 100755 --- a/etc/check_doc_order.py +++ b/etc/check_doc_order.py @@ -4,7 +4,7 @@ from os import listdir from os.path import isfile, splitext -being_warn_col = "\033[93m" +begin_warn_col = "\033[93m" end_warn_col = "\033[0m" @@ -64,7 +64,7 @@ def process_file(f): highest_level = level break print( - f"{being_warn_col}Warning: {command} is not in the correct place in docstring at {file}:{line_no+1}{end_warn_col}" + f"{begin_warn_col}Warning: {command} is not in the correct place in docstring at {file}:{line_no+1}{end_warn_col}" )