Commit 1379ae02 authored by Georg Brandl's avatar Georg Brandl

Indentation normalization.

parent a74d675f
......@@ -371,9 +371,9 @@ Encoders and decoders
def default(self, o):
try:
iterable = iter(o)
iterable = iter(o)
except TypeError:
pass
pass
else:
return list(iterable)
return JSONEncoder.default(self, o)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment