mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-23 01:56:54 +03:00
Remove blinker dependency
This commit is contained in:
parent
b564e144df
commit
a0d8b7162a
|
@ -1,4 +1,9 @@
|
||||||
|
try:
|
||||||
from blinker import Signal
|
from blinker import Signal
|
||||||
|
except ImportError:
|
||||||
|
class Signal(object):
|
||||||
|
def send(self, *args, **kwargs):
|
||||||
|
pass
|
||||||
|
|
||||||
init_schema = Signal()
|
init_schema = Signal()
|
||||||
class_prepared = Signal()
|
class_prepared = Signal()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user