Bump flake8 to 7.3.* (#14315)

Closes #14313
This commit is contained in:
Semyon Moroz
2025-06-21 17:44:25 +00:00
committed by GitHub
parent 3419bc5407
commit 62111cd6db
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
version = "7.2.*"
version = "7.3.*"
upstream_repository = "https://github.com/pycqa/flake8"
requires = ["types-pyflakes"]
+4
View File
@@ -3,3 +3,7 @@ from typing import Final
FSTRING_START: Final[int]
FSTRING_MIDDLE: Final[int]
FSTRING_END: Final[int]
TSTRING_START: Final[int]
TSTRING_MIDDLE: Final[int]
TSTRING_END: Final[int]
+1
View File
@@ -43,6 +43,7 @@ class FileProcessor:
def __init__(self, filename: str, options: Namespace, lines: list[str] | None = None) -> None: ...
@property
def file_tokens(self) -> list[TokenInfo]: ...
def tstring_start(self, lineno: int) -> None: ...
def fstring_start(self, lineno: int) -> None: ...
def multiline_string(self, token: TokenInfo) -> Generator[str, None, None]: ...
def reset_blank_before(self) -> None: ...