Skip to content

Commit 8bacf9a

Browse files
committed
Lint
1 parent d184cdc commit 8bacf9a

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

graphql_server/__init__.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@
99
import json
1010
from collections import namedtuple
1111
from collections.abc import MutableMapping
12-
from typing import (
13-
Any,
14-
Callable,
15-
Collection,
16-
Dict,
17-
List,
18-
Optional,
19-
Type,
20-
Union,
21-
cast,
22-
)
12+
from typing import Any, Callable, Collection, Dict, List, Optional, Type, Union, cast
2313

2414
from graphql.error import GraphQLError
2515
from graphql.execution import ExecutionResult, execute

tests/test_asyncio.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import asyncio
22

3-
from graphql.type.definition import (
4-
GraphQLField,
5-
GraphQLNonNull,
6-
GraphQLObjectType,
7-
)
3+
from graphql.type.definition import GraphQLField, GraphQLNonNull, GraphQLObjectType
84
from graphql.type.scalars import GraphQLString
95
from graphql.type.schema import GraphQLSchema
106

0 commit comments

Comments
 (0)