Files
openide/python/testData/inspections/AddCallSuperRequiredKeywordOnlyParamAfterSingleStarInSuperInitIsMerged_after.py

8 lines
122 B
Python

class A:
def __init__(self, *, a):
pass
class B(A):
def __init__(self, a):
super().__init__(a=a)