Committed via https://github.com/asottile/all-repos
This commit is contained in:
Anthony Sottile
2024-10-11 19:30:07 -04:00
parent cef0300fd0
commit a49f812a96
36 changed files with 47 additions and 47 deletions

View File

@ -3,8 +3,8 @@ from __future__ import annotations
import argparse
import io
import tokenize
from collections.abc import Sequence
from tokenize import tokenize as tokenize_tokenize
from typing import Sequence
NON_CODE_TOKENS = frozenset((
tokenize.COMMENT, tokenize.ENDMARKER, tokenize.NEWLINE, tokenize.NL,