Eolian: Shorten enum members

This commit is contained in:
Kai Huuhko 2014-06-12 23:46:36 +03:00
parent 1ac4c41179
commit 10c60e812b
1 changed files with 3 additions and 3 deletions

View File

@ -16,9 +16,9 @@ class FunctionType(IntEnum):
class ParameterDir(IntEnum):
"""Parameter Direction"""
IN_PARAM = EOLIAN_IN_PARAM
OUT_PARAM = EOLIAN_OUT_PARAM
INOUT_PARAM = EOLIAN_INOUT_PARAM
IN = EOLIAN_IN_PARAM
OUT = EOLIAN_OUT_PARAM
INOUT = EOLIAN_INOUT_PARAM
class ClassType(IntEnum):
"""Class Type"""