5 lines
86 B
Python
5 lines
86 B
Python
|
def dumper(obj):
|
||
|
if isinstance(obj, set):
|
||
|
return list(obj)
|
||
|
return obj
|