Skip to content

Commit 1992c9d

Browse files
Update run-dicts.test
1 parent 5c08b9c commit 1992c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/test-data/run-dicts.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class MyDict(dict):
269269
class MyComplexDict(DefaultDict, MyDict):
270270
def __init__(self, vals: Dict[str, int]):
271271
# The custom init is necessary for this test as we cannot init a DefaultDict with a dict
272-
DefaultDict.__init__(int)
272+
DefaultDict.__init__(self, int)
273273
for k, v in vals.items():
274274
self[k] = v
275275

0 commit comments

Comments
 (0)