Skip to content

Commit 4392985

Browse files
committed
Fix import from graphql_relay
The module name was deprecated, but all imports should be made from the top level anyway.
1 parent 284b88c commit 4392985

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

graphene_sqlalchemy/fields.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
from graphene import NonNull
99
from graphene.relay import Connection, ConnectionField
1010
from graphene.relay.connection import connection_adapter, page_info_adapter
11-
from graphql_relay.connection.arrayconnection import \
12-
connection_from_array_slice
11+
from graphql_relay import connection_from_array_slice
1312

1413
from .batching import get_batch_resolver
1514
from .utils import EnumValue, get_query

0 commit comments

Comments
 (0)