diff --git a/stubs/pep8-naming/pep8ext_naming.pyi b/stubs/pep8-naming/pep8ext_naming.pyi index 20c711918..13e7e48fb 100644 --- a/stubs/pep8-naming/pep8ext_naming.pyi +++ b/stubs/pep8-naming/pep8ext_naming.pyi @@ -1,6 +1,6 @@ import ast from argparse import Namespace -from collections.abc import Generator +from collections.abc import Generator, Iterable from typing import Any __version__: str @@ -23,6 +23,8 @@ class NamingChecker: @classmethod def parse_options(cls, option: Namespace) -> None: ... def run(self) -> Generator[tuple[int, int, str, type[Any]], None, None]: ... + def tag_class_functions(self, cls_node: ast.ClassDef) -> None: ... + def set_function_nodes_types(self, nodes: Iterable[ast.AST], ismetaclass: bool, late_decoration: dict[str, str]) -> None: ... def __getattr__(self, name: str) -> Any: ... # incomplete (other attributes are normally not accessed) def __getattr__(name: str) -> Any: ... # incomplete (other attributes are normally not accessed)