mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
13 lines
152 B
Python
13 lines
152 B
Python
class A:
|
|
__metaclass__ = type
|
|
|
|
|
|
class B:
|
|
__metaclass__ = type
|
|
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
|
|
class C(metaclass=type):
|
|
pass
|