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 was archived by the owner on Mar 17, 2026. It is now read-only.
Python's json.dumps method encodes NaN into JSON output as NaN, which is not actually valid JSON, and the API's parser can't process that, so the client will get back an HTTP 400 error if a NaN value is accidentally included in the request. The python library should specify allow_nan = False in the json.dumps call so that the calling code gets a ValueError instead of a strange API error.