@@ -626,17 +626,17 @@ class GeoPoint(GraphQLInputObjectType):
626626 """
627627
628628 def __init__ (self ,
629- name , # type: str
630- fields , # type: Union[Callable[[], Dict[str, GraphQLInputObjectField]], Dict[str, GraphQLInputObjectField]]
631- description = None , # type: Optional[str]
632- container_type = None , # type: Type[Dict[str, Any]]
633- ):
629+ name , # type: str
630+ fields , # type: Union[Callable[[], Dict[str, GraphQLInputObjectField]], Dict[str, GraphQLInputObjectField]]
631+ description = None , # type: Optional[str]
632+ container_type = None , # type: Type[Dict[str, Any]]
633+ ):
634634 # type: (...) -> None
635635 assert name , "Type must be named."
636636 self .name = name
637637 self .description = description
638638 if container_type is None :
639- container_type = dict # type: ignore
639+ container_type = dict # type: ignore
640640 assert callable (container_type ), "container_type must be callable"
641641 self .container_type = container_type
642642 self ._fields = fields
@@ -755,7 +755,7 @@ class RowType(GraphQLObjectType):
755755
756756 def __init__ (
757757 self ,
758- type , # type: Union[GraphQLList, GraphQLObjectType, GraphQLScalarType, GraphQLInputObjectType, GraphQLInterfaceType]
758+ type , # type: Union[GraphQLList, GraphQLObjectType, GraphQLScalarType, GraphQLInputObjectType, GraphQLInterfaceType]
759759 ):
760760 # type: (...) -> None
761761 assert is_type (type ) and not isinstance (
0 commit comments