5 lines
93 B
Python
5 lines
93 B
Python
from enum import IntEnum
|
|
|
|
class nase_mode(IntEnum):
|
|
generate_ase = 1
|
|
pass_ase = 2 |