Skip to content

Commit 709b445

Browse files
authored
Remove async from type checking for now (#173)
1 parent e7e77fb commit 709b445

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

jsonrpcserver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .async_dispatcher import dispatch as async_dispatch
1+
# from .async_dispatcher import dispatch as async_dispatch
22
from .dispatcher import dispatch
33
from .methods import add as method
44
from .result import Result, Success, Error, InvalidParams

jsonrpcserver/async_dispatcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# type: ignore
12
"""Asynchronous dispatch"""
23

34
import asyncio

0 commit comments

Comments
 (0)