summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAdrian Tschira <nota@notafile.com>2018-05-29 17:35:55 +0200
committerAdrian Tschira <nota@notafile.com>2018-05-29 17:35:55 +0200
commit7873cde52658d53c3f25ea8257309543af148ab2 (patch)
tree2858af4e34c1e78c4d66eb2f4fe73d6df0c6a9bb /synapse
parentfix recursion error (diff)
downloadsynapse-7873cde52658d53c3f25ea8257309543af148ab2.tar.xz
pep8
Diffstat (limited to 'synapse')
-rw-r--r--synapse/util/frozenutils.py1
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()})