Break up long line failing py27 linting

This commit is contained in:
Daniel Gallagher 2018-05-28 15:04:23 -07:00
parent b89e2c3ada
commit d024bc525d

View File

@ -144,7 +144,8 @@ class TypeMap(GraphQLTypeMap):
description=description,
deprecation_reason=deprecation_reason)
type_description = type_._meta.description(None) if callable(type_._meta.description) else type_._meta.description
type_description = type_._meta.description(None)\
if callable(type_._meta.description) else type_._meta.description
return GrapheneEnumType(
graphene_type=type_,