Skip to content

Instantly share code, notes, and snippets.

@mgd020
Created September 27, 2016 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgd020/474fa16ea8f4a098203fca561c5cfef6 to your computer and use it in GitHub Desktop.
Save mgd020/474fa16ea8f4a098203fca561c5cfef6 to your computer and use it in GitHub Desktop.
a little python enum gist
class Enum(object):
def __init__(self, **kwargs):
self.__dict__.update(kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment