mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
15 lines
280 B
Python
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"
|