Remove and irrelevant TODO comment

This commit is contained in:
Darren Burns
2022-02-03 10:29:53 +00:00
parent d21bd82406
commit a345c55140

View File

@@ -232,8 +232,6 @@ def substitute_references(tokens: Iterator[Token]) -> Iterable[Token]:
but with variables resolved. but with variables resolved.
""" """
variables: dict[str, list[Token]] = defaultdict(list) variables: dict[str, list[Token]] = defaultdict(list)
# TODO: Trim whitespace before inserting into variables dict instead
# of on reading from it.
while tokens: while tokens:
token = next(tokens, None) token = next(tokens, None)
if token is None: if token is None: