diff options
author | velom <velom@yandex-team.ru> | 2022-02-10 16:48:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:48 +0300 |
commit | 16695af126b81715716fd9708b2c9c82e8a60c9c (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/python/func/__init__.py | |
parent | 094e560ec880abc6d1e7e01b0c29666385268eb8 (diff) | |
download | ydb-16695af126b81715716fd9708b2c9c82e8a60c9c.tar.gz |
Restoring authorship annotation for <velom@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/python/func/__init__.py')
-rw-r--r-- | library/python/func/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/python/func/__init__.py b/library/python/func/__init__.py index cf9476e476..7424361635 100644 --- a/library/python/func/__init__.py +++ b/library/python/func/__init__.py @@ -156,9 +156,9 @@ def split(data, func): else: r.append(e) return l, r - - -def flatten_dict(dd, separator='.', prefix=''): + + +def flatten_dict(dd, separator='.', prefix=''): return ( { prefix + separator + k if prefix else k: v |