fixed bug when no middlewares are present

This commit is contained in:
Alec Aivazis 2016-05-22 16:52:30 -07:00
parent 91a2423e5e
commit feb0825a63

View File

@ -147,6 +147,8 @@ class GroupNamedType(InstanceType):
name = type.name
if not name and schema.auto_camelcase:
name = to_camel_case(type.default_name)
elif not name:
name = type.default_name
return name, schema.T(type)
def iter_types(self, schema):