Skip to content

Instantly share code, notes, and snippets.

View shonenada's full-sized avatar
🤷‍♂️
Focusing

Yaoda Liu shonenada

🤷‍♂️
Focusing
View GitHub Profile
class Enum(object):
def __init__(self, *args, **kwargs):
raise NotImplemented
class Person(object):
gendor = Enum("gendor", fields=("male", "female", "unknown"))
def __init__(self):
self.gendor = "unknown"