Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Sep 26, 2024
1 parent b69f0c9 commit f0b6240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/check_doc_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down Expand Up @@ -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}"
)


Expand Down

0 comments on commit f0b6240

Please sign in to comment.