Update comment on `merged`

This commit is contained in:
Olivier Wilkinson (reivilibre) 2023-12-06 15:17:55 +00:00
parent a0d1348309
commit 3318722753
1 changed files with 2 additions and 1 deletions

View File

@ -358,7 +358,8 @@ def merge_into(dest: Any, new: Any) -> None:
def merged(a: Dict[str, Any], b: Dict[str, Any]) -> Dict[str, Any]:
"""
Merges `b` into `a` and returns `a`.
Merges `b` into `a` and returns `a`. Here because we can't use `merge_into`
in a lamba conveniently.
"""
merge_into(a, b)
return a