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
Following the refacto #18, when the content type returned by the server contains the charset, e.g. application/json;charset=utf-8, the response validator always fails because the deserializer tries to pass as input argument the charset:
Traceback (most recent call last):
File "/Users/Shared/robocorp/ht/***/lib/python3.9/site-packages/openapi_core/deserializing/media_types/deserializers.py", line 48, in deserialize
return deserializer_callable(value, **parameters)
File "/Users/Shared/robocorp/ht/***/lib/python3.9/json/__init__.py", line 359, in loads
return cls(**kw).decode(s)
TypeError: __init__() got an unexpected keyword argument 'charset'
The text was updated successfully, but these errors were encountered:
Hello,
Following the refacto #18, when the content type returned by the server contains the charset, e.g.
application/json;charset=utf-8
, the response validator always fails because the deserializer tries to pass as input argument the charset:The text was updated successfully, but these errors were encountered: