From d5fca54510aa2a34f8e59f97b9a1f09e36aba106 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Wed, 3 Aug 2011 17:23:04 +0200 Subject: [PATCH] Fix small typo in docstring Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/utils/algo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/algo.py b/lib/utils/algo.py index 280a1b736..9182e8e9a 100644 --- a/lib/utils/algo.py +++ b/lib/utils/algo.py @@ -119,7 +119,7 @@ def InvertDict(dict_in): """Inverts the key/value mapping of a dict. @param dict_in: The dict to invert - @returns the inverted dict + @return: the inverted dict """ return dict(zip(dict_in.values(), dict_in.keys())) -- GitLab