We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc7196 commit 3b50a53Copy full SHA for 3b50a53
1 file changed
README.md
@@ -9,9 +9,9 @@ MessagePack RPC implementation based on Tornado.
9
```python
10
import msgpackrpc
11
12
-class SumServer:
13
- def sum(self, x, y):
14
- return x + y
+class SumServer(object):
+ def sum(self, x, y):
+ return x + y
15
16
server = msgpackrpc.Server(SumServer())
17
server.listen(msgpackrpc.Address("localhost", 18800))
0 commit comments