@@ -626,17 +626,17 @@ class GeoPoint(GraphQLInputObjectType):
626
626
"""
627
627
628
628
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
+ ):
634
634
# type: (...) -> None
635
635
assert name , "Type must be named."
636
636
self .name = name
637
637
self .description = description
638
638
if container_type is None :
639
- container_type = dict # type: ignore
639
+ container_type = dict # type: ignore
640
640
assert callable (container_type ), "container_type must be callable"
641
641
self .container_type = container_type
642
642
self ._fields = fields
@@ -755,7 +755,7 @@ class RowType(GraphQLObjectType):
755
755
756
756
def __init__ (
757
757
self ,
758
- type , # type: Union[GraphQLList, GraphQLObjectType, GraphQLScalarType, GraphQLInputObjectType, GraphQLInterfaceType]
758
+ type , # type: Union[GraphQLList, GraphQLObjectType, GraphQLScalarType, GraphQLInputObjectType, GraphQLInterfaceType]
759
759
):
760
760
# type: (...) -> None
761
761
assert is_type (type ) and not isinstance (
0 commit comments