Created
September 27, 2016 06:34
-
-
Save mgd020/474fa16ea8f4a098203fca561c5cfef6 to your computer and use it in GitHub Desktop.
a little python enum gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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