diff options
author | Adrian Tschira <nota@notafile.com> | 2018-05-29 17:35:55 +0200 |
---|---|---|
committer | Adrian Tschira <nota@notafile.com> | 2018-05-29 17:35:55 +0200 |
commit | 7873cde52658d53c3f25ea8257309543af148ab2 (patch) | |
tree | 2858af4e34c1e78c4d66eb2f4fe73d6df0c6a9bb /synapse/util | |
parent | fix recursion error (diff) | |
download | synapse-7873cde52658d53c3f25ea8257309543af148ab2.tar.xz |
pep8
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/frozenutils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/util/frozenutils.py b/synapse/util/frozenutils.py index 97914907aa..15f0a7ba9e 100644 --- a/synapse/util/frozenutils.py +++ b/synapse/util/frozenutils.py @@ -18,6 +18,7 @@ import simplejson as json from six import string_types + def freeze(o): if isinstance(o, dict): return frozendict({k: freeze(v) for k, v in o.items()}) |