We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getattr
1 parent 61a3017 commit f2905b8Copy full SHA for f2905b8
interactions/client/get.py
@@ -235,7 +235,7 @@ def _check():
235
236
elif force_http:
237
_objects.clear()
238
- _func = getattr(http_name, client._http)
+ _func = getattr(client._http, http_name)
239
for _id in kwargs.get(kwarg_name):
240
_kwargs = kwargs
241
_kwargs.pop(kwarg_name)
@@ -244,7 +244,7 @@ def _check():
244
return _http_request(_obj, http=client._http, request=_objects)
245
246
else:
247
248
for _index, __obj in enumerate(_objects):
249
if __obj is None:
250
_id = kwargs.get(kwarg_name)[_index]
0 commit comments