From 0df8179e1c41a42b8f876eab17651180030f66c8 Mon Sep 17 00:00:00 2001 From: Arfey Date: Wed, 24 May 2023 15:03:34 +0300 Subject: [PATCH] fixed lints --- graphene_django/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graphene_django/views.py b/graphene_django/views.py index 646901b..377b75d 100644 --- a/graphene_django/views.py +++ b/graphene_django/views.py @@ -115,7 +115,9 @@ class GraphQLView(View): self.pretty = pretty or self.pretty self.graphiql = graphiql or self.graphiql self.batch = batch or self.batch - self.execution_context_class = execution_context_class or self.execution_context_class + self.execution_context_class = ( + execution_context_class or self.execution_context_class + ) if subscription_path is None: self.subscription_path = graphene_settings.SUBSCRIPTION_PATH