From 8180f0d070d5748d35f1e177baf121c2320ea17a Mon Sep 17 00:00:00 2001 From: DrillableBit Date: Sun, 12 Jan 2025 13:54:22 +0100 Subject: [PATCH] adding/removing spaces --- aiarena/graphql/common.py | 1 + aiarena/graphql/mutations.py | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/aiarena/graphql/common.py b/aiarena/graphql/common.py index 4b245d7d..9a6316a0 100644 --- a/aiarena/graphql/common.py +++ b/aiarena/graphql/common.py @@ -9,6 +9,7 @@ from graphene_django import DjangoObjectType from graphene_django.forms.mutation import _set_errors_flag_to_context from graphene_django.types import ErrorType + from graphql import GraphQLError from aiarena.core.utils import camel_case diff --git a/aiarena/graphql/mutations.py b/aiarena/graphql/mutations.py index 39b08861..6d390703 100644 --- a/aiarena/graphql/mutations.py +++ b/aiarena/graphql/mutations.py @@ -14,11 +14,6 @@ class UpdateBotInput(CleanedInputType): bot_zip_publicly_downloadable = graphene.Boolean() bot_data_enabled = graphene.Boolean() bot_data_publicly_downloadable = graphene.Boolean() - - - - - class UpdateBot(CleanedInputMutation): bot = graphene.Field(BotType)