Fixed required get_type in Enum for UnmountedType

This commit is contained in:
Syrus Akbary 2016-08-13 17:32:32 -07:00
parent 4f52498a06
commit fd16de8748

View File

@ -51,4 +51,5 @@ class EnumTypeMeta(type):
class Enum(six.with_metaclass(EnumTypeMeta, UnmountedType)):
pass
def get_type(self):
return type(self)