beremiz
Clone
Summary
Browse
Changes
Graph
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
2017-10-19, Andrey Skvortsov
fb73a6b6622d
fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
# pylint: disable=undefined-variable
from svgui.pyjs.jsonrpc.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