--- lib/utils/algo.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/utils/algo.py b/lib/utils/algo.py index 280a1b7..9182e8e 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())) -- 1.7.3.1