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
{{ message }}
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
Currently, when we make a get request to the interop server, we return the json response as a dict, this does not line up with the TypedDict type that it is supposed to return. This can lead to issues where instead of an enum being an int, it returns the name as a string. Using a package such as jetblack-serialization should solve our issue as we just need to deserialize the response.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, when we make a get request to the interop server, we return the json response as a dict, this does not line up with the
TypedDict
type that it is supposed to return. This can lead to issues where instead of an enum being an int, it returns the name as a string. Using a package such as jetblack-serialization should solve our issue as we just need to deserialize the response.The text was updated successfully, but these errors were encountered: