From 8af58155f8216b8dc69644b0bd7c8239d0d8205f Mon Sep 17 00:00:00 2001 From: Dmitrii Simutenkov Date: Tue, 30 Jun 2020 20:23:30 +0400 Subject: [PATCH] - remove trailing comma (fix SyntaxError) --- aiohttp_graphql/graphqlview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp_graphql/graphqlview.py b/aiohttp_graphql/graphqlview.py index dfe27fc..ed543cc 100644 --- a/aiohttp_graphql/graphqlview.py +++ b/aiohttp_graphql/graphqlview.py @@ -36,7 +36,7 @@ def __init__( error_formatter=None, enable_async=True, subscriptions=None, - **execution_options, + **execution_options ): # pylint: disable=too-many-arguments