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

15 lines
280 B
Python

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