blob: 16030f8a4d7859893c23901f4305efb4abb03fbf [file] [log] [blame]
# pylint: disable=missing-docstring,too-few-public-methods,no-member,unused-argument, useless-object-inheritance
class NotUselessSuper(object):
def not_passing_all_params(self, first, *args, second=None, **kwargs):
return super().not_passing_all_params(*args, second, **kwargs)
class UselessSuper(object):
def useless(self, first, *, second=None, **kwargs): # [useless-super-delegation]
return super().useless(first, second=second, **kwargs)