Hello, everyone. I have reported the problem of useless-super-delegation with pylint detection. How to solve this problem?
my way of writing:
class BaseHandler (RequestHandler):
executor = ThreadPoolExecutor(1024)
def __init__(self, *args, **kwargs):
super(BaseHandler, self).__init__(*args, **kwargs)