typo/indent fix (no functional changes)

pull/2171/head
sebres 2018-07-05 19:27:07 +02:00
parent 6ce67a6d21
commit 06f2130575
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ logSys = getLogger(__name__)
def _json_default(x): def _json_default(x):
"""Avoid errors on types unknow in json-adapters.""" """Avoid errors on types unknown in json-adapters."""
if isinstance(x, set): if isinstance(x, set):
x = list(x) x = list(x)
return uni_string(x) return uni_string(x)