Files
openide/python/testData/inspections/PyArgumentListInspection/dunderNewCallInDictInheritor.py
Semyon Proshev 3b36c6f5e9 PY-23069 Fixed: Wrong signature of __new__() method
Add `__new__` method to builtin `dict` stubs.
2017-03-22 19:14:20 +03:00

3 lines
126 B
Python

class MenuItem(dict):
def __new__(cls, *args, **kwargs):
return super(MenuItem, cls).__new__(cls, *args, **kwargs)