Skip to content

Commit e5499ec

Browse files
authored
Update python_base.py
1 parent 0c8625b commit e5499ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ class Dict(dict):
285285
def __missing__(self, key):
286286
self[key] = []
287287
return self[key]
288-
dct = Dict()
288+
dct = dict()
289289
dct["foo"].append(1) # 这有点类似于collections.defalutdict
290290
dct["foo"] # [1]
291291

0 commit comments

Comments
 (0)