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 | 094e560ec880abc6d1e7e01b0c29666385268eb8 (patch) | |
tree | 3d0ef646b51d2a78ae93a5393f599c70275c67d1 /library/python/func/__init__.py | |
parent | 4e85f12f6d14e7af54905e3c6a2aed2410fe2553 (diff) | |
download | ydb-094e560ec880abc6d1e7e01b0c29666385268eb8.tar.gz |
Restoring authorship annotation for <velom@yandex-team.ru>. Commit 1 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 7424361635..cf9476e476 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 |