Files
openide/python/testData/quickFixes/AddCallSuperQuickFixTest/kwargs.py
T

7 lines
189 B
Python

class A(object):
def __init__(self):
pass
class B(A):
def <warning descr="Call to __init__ of super class is missed">__in<caret>it__</warning>(self, **kwargs):
pass