ruff/crates/ruff_linter/resources/test/fixtures/flake8_pyi/PYI035.pyi
2023-09-20 08:38:27 +02:00

13 lines
329 B
Python

__all__: list[str] # Error: PYI035
__all__: list[str] = ["foo"]
class Foo:
__all__: list[str]
__match_args__: tuple[str, ...] # Error: PYI035
__slots__: tuple[str, ...] # Error: PYI035
class Bar:
__all__: list[str] = ["foo"]
__match_args__: tuple[str, ...] = (1,)
__slots__: tuple[str, ...] = "foo"