help-beta: Remove reduntant TODO item for ordered list numbering.

The TODO list item wanted us to check that all ordered list items
started with `1.`. We fixed this in #34964.
This commit is contained in:
Shubham Padia
2025-07-28 21:01:49 +00:00
committed by Tim Abbott
parent b19fbe5c9b
commit 8b9c616ea2

View File

@@ -28,12 +28,6 @@ INDENT_SPACES = " "
SETTINGS_LINK_PATTERN = re.compile(r"{settings_tab\|(?P<setting_identifier>.*?)}")
RELATIVE_LINKS_PATTERN = re.compile(r"\{relative\|(?P<link_type>.*?)\|(?P<key>.*?)\}")
# TODO list before cutover.
#
# 1. Before cutover we should also check for ordered list items that do not start
# with `1. ` since our conversion script assumes that every item list starts
# with `1. `. The regex we used to check for this was `\b(?!1\.)\d+\. `.
class IncludeFileInfo(TypedDict):
is_only_ordered_list: bool