Skip to content
Snippets Groups Projects
Commit 44df3370 authored by Marco Clemencic's avatar Marco Clemencic Committed by Sebastien Ponce
Browse files

Minor tweak to PyConf JSON encoder to support set properties

parent 6d09a3ab
No related branches found
No related tags found
1 merge request!4381Minor tweak to PyConf JSON encoder to support set properties
......@@ -101,10 +101,10 @@ def _read_options_pkl_impl(filename, all_opts=True):
class _PropEncoder(json.JSONEncoder):
def default(self, obj):
try:
obj = obj.toStringProperty()
except AttributeError:
pass
if isinstance(obj, set):
return sorted(obj)
elif hasattr(obj, "toStringProperty"):
return obj.toStringProperty()
return obj
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment