Skip to content

Commit

Permalink
ruff fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WeepingClown13 committed Mar 11, 2024
1 parent 9d1a270 commit dc9ed6f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
# html_theme = 'alabaster'
# if on_rtd:
# html_theme = 'sphinx_rtd_theme'
import sphinx_graphene_theme
import sphinx_graphene_theme #noqa

html_theme = "sphinx_graphene_theme"

Expand Down
1 change: 0 additions & 1 deletion examples/django_mongoengine/bike/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from django.test import RequestFactory
from graphene.test import Client
from .schema import schema
from .fixtures import fixtures_data


def test_bikes_first_item_query(fixtures_data):
Expand Down
3 changes: 2 additions & 1 deletion examples/django_mongoengine/bike_catalog/settings_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from .settings import * # flake8: noqa
from .settings import mongoengine


mongoengine.connect("graphene-mongo-test", host="mongomock://localhost", alias="default")
1 change: 0 additions & 1 deletion examples/falcon_mongoengine/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from graphene.test import Client

from examples.falcon_mongoengine.schema import schema
from .fixtures import fixtures_data

mongoengine.connect("graphene-mongo-test", host="mongomock://localhost", alias="default")

Expand Down

0 comments on commit dc9ed6f

Please sign in to comment.