Keep this import here, or this piece of software will implode

This commit is contained in:
Pawel Kowalski 2018-08-23 14:03:51 +02:00
parent c32372c535
commit 7eb8db9671
1 changed files with 3 additions and 3 deletions

View File

@ -2,13 +2,13 @@ import graphene
from django.conf import settings
from graphene_django.debug import DjangoDebug
# Keep this import exactly here, it's necessary for StreamField conversion
from api import graphene_wagtail
from book.schema import BookQuery
from objectives.schema import ObjectivesQuery
from rooms.schema import RoomsQuery
# Keep this import here, it's necessary for StreamField conversion
from api import graphene_wagtail
class Query(RoomsQuery, ObjectivesQuery, BookQuery, graphene.ObjectType):
# This class will inherit from multiple Queries