mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 11:44:39 +07:00
12 lines
210 B
Python
12 lines
210 B
Python
from enum import Enum
|
|
|
|
|
|
class MyVal: ...
|
|
|
|
|
|
class MyEnumBase(Enum):
|
|
_value_: MyVal
|
|
|
|
@staticmethod
|
|
def _generate_next_value_(name: str, start: int, count: int, last_values: list[MyVal]) -> MyVal: ...
|