From ac0e57c642e1478007de6534886c6289906b567d Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Sun, 4 Apr 2021 14:32:35 +0300 Subject: [PATCH] Update combine_values.md Fixes #439 --- snippets/combine_values.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/combine_values.md b/snippets/combine_values.md index e8dc1cdc7..01d2c7c1f 100644 --- a/snippets/combine_values.md +++ b/snippets/combine_values.md @@ -24,5 +24,5 @@ def combine_values(*dicts): d1 = {'a': 1, 'b': 'foo', 'c': 400} d2 = {'a': 3, 'b': 200, 'd': 400} -combine_values(d1, d2) # {'a': [1, 3], 'b': ['foo', 200], 'c': 400, 'd': 400} +combine_values(d1, d2) # {'a': [1, 3], 'b': ['foo', 200], 'c': [400], 'd': [400]} ```