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}" )