summaryrefslogtreecommitdiff
path: root/buildscripts/idl/idl/enum_types.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/idl/idl/enum_types.py')
-rw-r--r--buildscripts/idl/idl/enum_types.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/buildscripts/idl/idl/enum_types.py b/buildscripts/idl/idl/enum_types.py
index d66fb4010d0..94351364510 100644
--- a/buildscripts/idl/idl/enum_types.py
+++ b/buildscripts/idl/idl/enum_types.py
@@ -117,10 +117,6 @@ class _EnumTypeInt(EnumTypeInfoBase):
__metaclass__ = ABCMeta
- def __init__(self, idl_enum):
- # type: (Union[syntax.Enum,ast.Enum]) -> None
- super(_EnumTypeInt, self).__init__(idl_enum)
-
def get_cpp_type_name(self):
# type: () -> unicode
return common.title_case(self._enum.name)
@@ -196,10 +192,6 @@ class _EnumTypeString(EnumTypeInfoBase):
__metaclass__ = ABCMeta
- def __init__(self, idl_enum):
- # type: (Union[syntax.Enum,ast.Enum]) -> None
- super(_EnumTypeString, self).__init__(idl_enum)
-
def get_cpp_type_name(self):
# type: () -> unicode
return common.template_args("${enum_name}Enum", enum_name=common.title_case(