Skip to content

Commit 771f4f5

Browse files
authored
Fix for import from graphql-relay-py (#329) (#330)
* Add newlines to make pre-commit happy * Fix import from graphql_relay The module name was deprecated, but all imports should be made from the top level anyway.
1 parent 7bf0aa5 commit 771f4f5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
uses: pypa/[email protected]
2424
with:
2525
user: __token__
26-
password: ${{ secrets.PYPI_API_TOKEN }}
26+
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
- name: Run lint 💅
2020
run: tox
2121
env:
22-
TOXENV: flake8
22+
TOXENV: flake8

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)