We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c08b9c commit 1992c9dCopy full SHA for 1992c9d
mypyc/test-data/run-dicts.test
@@ -269,7 +269,7 @@ class MyDict(dict):
269
class MyComplexDict(DefaultDict, MyDict):
270
def __init__(self, vals: Dict[str, int]):
271
# The custom init is necessary for this test as we cannot init a DefaultDict with a dict
272
- DefaultDict.__init__(int)
+ DefaultDict.__init__(self, int)
273
for k, v in vals.items():
274
self[k] = v
275
0 commit comments