beremiz
Clone
Summary
Browse
Changes
Graph
fix wrong-import-order. first standard modules are imported, then others
2017-09-28, Andrey Skvortsov
0f1081928d65
fix wrong-import-order. first standard modules are imported, then others
from pyjs.jsonrpc import JSONRPCServiceBase
class JSONRPCService(JSONRPCServiceBase):
def serve(self):
return self.process(request.body.read())
def __call__(self, func):
self.methods[func.__name__] = func
return func