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 Resource, under the method add_action, will try to .update() the request.params, implying that params should be a dict. There are cases in which one would want to manually pass a str as params instead of dict, and therefore this would fail.
The
Resource
, under the methodadd_action
, will try to.update()
therequest.params
, implying thatparams
should be adict
. There are cases in which one would want to manually pass astr
asparams
instead ofdict
, and therefore this would fail.https://github.com/allisson/python-simple-rest-client/blob/master/simple_rest_client/resource.py#L102
The text was updated successfully, but these errors were encountered: