コード例 #1
0
 def serialize(self, value: numpy.ndarray) -> typing.List:
     if isinstance(value, EnumArray):
         value = value.decode_to_str()
     if isinstance(value, numpy.ndarray) and numpy.issubdtype(
             value.dtype, numpy.dtype(bytes)):
         value = value.astype(numpy.dtype(str))
     if isinstance(value, numpy.ndarray):
         value = value.tolist()
     return value