Skip to content

Commit ab3e0e3

Browse files
authored
Fix docstring grammar in tokenize function (#1434)
1 parent c5e40e8 commit ab3e0e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libcst/_parser/parso/python/tokenize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def _find_fstring_string(endpats, fstring_stack, line, lnum, pos):
424424
def tokenize(
425425
code: str, version_info: PythonVersionInfo, start_pos: Tuple[int, int] = (1, 0)
426426
) -> Generator[PythonToken, None, None]:
427-
"""Generate tokens from a the source code (string)."""
427+
"""Generate tokens from a source code (string)."""
428428
lines = split_lines(code, keepends=True)
429429
return tokenize_lines(lines, version_info, start_pos=start_pos)
430430

0 commit comments

Comments
 (0)