parseable_tokens: fix mypy annotations

Signed-off-by: Gregory Becker <becker33@llnl.gov>
This commit is contained in:
Gregory Becker 2025-05-15 10:35:13 -07:00
parent e0aa378f9e
commit b03d5b7885
No known key found for this signature in database
GPG Key ID: 2362541F6D14ED84

View File

@ -164,7 +164,7 @@ def tokenize(text: str) -> Iterator[Token]:
yield token
def parseable_tokens(text: str) -> List[Token]:
def parseable_tokens(text: str) -> Iterator[Token]:
"""Return non-whitespace tokens from the text passed as input
Raises: