13 lines
182 B
Python
13 lines
182 B
Python
from enum import Enum
|
|
|
|
|
|
class Datatypes(Enum):
|
|
|
|
Empty = 'empty'
|
|
Any = 'any'
|
|
Number = 'number'
|
|
String = 'string'
|
|
Bool = 'bool'
|
|
List = 'list'
|
|
Dict = 'dict'
|