Skip to content

Commit 39f18ef

Browse files
committed
Updated promise sorts
1 parent 91dfe61 commit 39f18ef

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

graphql/execution/executor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import collections
22
import functools
33
import logging
4-
54
from promise import Promise, is_thenable, promise_for_dict, promisify
65

76
from ..error import GraphQLError

graphql/execution/executors/gevent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import absolute_import
22

33
import gevent
4-
54
from promise import Promise
65

76
from .utils import process

graphql/execution/executors/process.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from multiprocessing import Process, Queue
2-
32
from promise import Promise
43

54
from .utils import process

graphql/execution/executors/thread.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from multiprocessing.pool import ThreadPool
22
from threading import Thread
3-
43
from promise import Promise
54

65
from .utils import process

0 commit comments

Comments
 (0)