Created
December 18, 2017 12:49
-
-
Save Jayasagar/b2b44e5ac4deea7cffcff54e3960845b to your computer and use it in GitHub Desktop.
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
from enum import Enum | |
class ConditionOperator(Enum): | |
EQ ='EQ' | |
LTE ='LTE' | |
GTE = 'GTE' | |
print(ConditionOperator.EQ.name) ## EQ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment