mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
7 lines
78 B
Python
7 lines
78 B
Python
import enum
|
|
|
|
|
|
class FakeEnum1(enum.Enum):
|
|
A = ...
|
|
B = ...
|
|
C = ...
|