Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit bea46a0

Browse files
committed
fix lints
1 parent 98327e2 commit bea46a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_methods.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,14 @@ async def unnamed_method(request):
104104

105105
assert 'method1' in repr(rpc_context.rpc.methods['method1'])
106106

107+
107108
@pytest.mark.asyncio
108109
async def test_partial_method(rpc_context, caplog):
109110
from functools import partial
110111

111112
async def pong(request, msg):
112113
return msg
113-
114+
114115
rpc_context.rpc.add_methods(
115116
('', partial(pong, msg="pong"), "pong"),
116117
)

0 commit comments

Comments
 (0)