japl-python/JAPL/meta/classtype.py

8 lines
91 B
Python
Raw Permalink Normal View History

2020-10-22 10:19:00 +02:00
from enum import Enum, auto
class ClassType(Enum):
NONE = auto()
CLASS = auto()