You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library interpets it as a 1-dimensonal Tuple. Tuple usually correponds to the [T]/(T) python objects but 1-dimensonal tuple performs this unwrapping during process which results in decoded value to be just T. On the other side, process_encode there is no such check which results in error when you try to pass instances received from decode to encode which becomes tough when working with dry_run apis when you need to pass complex structures back and worth
The text was updated successfully, but these errors were encountered:
Hey, I am facing an issue when working with the type of the following structure:
The library interpets it as a 1-dimensonal Tuple. Tuple usually correponds to the
[T]/(T)
python objects but 1-dimensonal tuple performs this unwrapping duringprocess
which results in decoded value to be justT
. On the other side,process_encode
there is no such check which results in error when you try to pass instances received fromdecode
toencode
which becomes tough when working withdry_run
apis when you need to pass complex structures back and worthThe text was updated successfully, but these errors were encountered: