Files
ImageUtils/.CondaPkg/env/lib/python3.11/site-packages/jsons/serializers/default_complex.py
2023-03-18 20:03:34 +07:00

9 lines
236 B
Python

def default_complex_serializer(obj: complex, **_) -> dict:
"""
Serialize a complex as a dict.
:param obj: the complex.
:param _: not used.
:return: a ``dict``.
"""
return {'real': obj.real, 'imag': obj.imag}