Update comment on merged

This commit is contained in:
Olivier Wilkinson (reivilibre) 2023-12-06 15:17:55 +00:00
parent a0d1348309
commit 3318722753

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]: 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) merge_into(a, b)
return a return a