mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-22 13:59:51 +03:00
isort observed on ls
This commit is contained in:
parent
a53b782bf8
commit
cc764ebc7b
|
@ -1,6 +1,6 @@
|
|||
from .node import Node, is_node, GlobalID
|
||||
from .mutation import ClientIDMutation
|
||||
from .connection import Connection, ConnectionField, PageInfo
|
||||
from .mutation import ClientIDMutation
|
||||
from .node import GlobalID, Node, is_node
|
||||
|
||||
__all__ = [
|
||||
"Node",
|
||||
|
|
|
@ -4,7 +4,8 @@ from functools import partial
|
|||
|
||||
from graphql_relay import connection_from_array
|
||||
|
||||
from ..types import Boolean, Enum, Int, Interface, List, NonNull, Scalar, String, Union
|
||||
from ..types import (Boolean, Enum, Int, Interface, List, NonNull, Scalar,
|
||||
String, Union)
|
||||
from ..types.field import Field
|
||||
from ..types.objecttype import ObjectType, ObjectTypeOptions
|
||||
from ..utils.thenables import maybe_thenable
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
from pytest import raises
|
||||
|
||||
from ...types import Argument, Field, Int, List, NonNull, ObjectType, Schema, String
|
||||
from ...types import (Argument, Field, Int, List, NonNull, ObjectType, Schema,
|
||||
String)
|
||||
from ..connection import Connection, ConnectionField, PageInfo
|
||||
from ..node import Node
|
||||
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
from graphql_relay.utils import base64
|
||||
from pytest import mark
|
||||
|
||||
from graphql_relay.utils import base64
|
||||
|
||||
from graphene.types import ObjectType, Schema, String
|
||||
from graphene.relay.connection import Connection, ConnectionField, PageInfo
|
||||
from graphene.relay.node import Node
|
||||
from graphene.types import ObjectType, Schema, String
|
||||
|
||||
letter_chars = ["A", "B", "C", "D", "E"]
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
from pytest import mark
|
||||
|
||||
from graphql_relay.utils import base64
|
||||
from pytest import mark
|
||||
|
||||
from ...types import ObjectType, Schema, String
|
||||
from ..connection import Connection, ConnectionField, PageInfo
|
||||
|
|
|
@ -1,15 +1,7 @@
|
|||
from pytest import mark, raises
|
||||
|
||||
from ...types import (
|
||||
ID,
|
||||
Argument,
|
||||
Field,
|
||||
InputField,
|
||||
InputObjectType,
|
||||
NonNull,
|
||||
ObjectType,
|
||||
Schema,
|
||||
)
|
||||
from ...types import (ID, Argument, Field, InputField, InputObjectType,
|
||||
NonNull, ObjectType, Schema)
|
||||
from ...types.scalars import String
|
||||
from ..mutation import ClientIDMutation
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
from pytest import mark
|
||||
|
||||
from graphene.relay.mutation import ClientIDMutation
|
||||
from graphene.types import ID, Field, ObjectType, Schema
|
||||
from graphene.types.scalars import String
|
||||
from graphene.relay.mutation import ClientIDMutation
|
||||
|
||||
|
||||
class SharedFields(object):
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import re
|
||||
|
||||
from graphql_relay import to_global_id
|
||||
|
||||
from graphene.tests.utils import dedent
|
||||
|
|
Loading…
Reference in New Issue
Block a user