@@ -215,10 +215,10 @@ def _make_request(self, method, url, data=None, content_type=None,
215215 :param headers: A dictionary of HTTP headers to send with the request.
216216
217217 :type target_object: object
218- :param target_object: (Optional) Argument to be used by library callers.
219- This can allow custom behavior, for example, to
220- defer an HTTP request and complete initialization
221- of the object at a later time.
218+ :param target_object:
219+ (Optional) Argument to be used by library callers. This can allow
220+ custom behavior, for example, to defer an HTTP request and complete
221+ initialization of the object at a later time.
222222
223223 :rtype: tuple of ``response`` (a dictionary of sorts)
224224 and ``content`` (a string).
@@ -262,8 +262,9 @@ def _do_request(self, method, url, headers, data,
262262 :param data: The data to send as the body of the request.
263263
264264 :type target_object: object
265- :param target_object: (Optional) Unused ``target_object`` here but may be used
266- by a superclass.
265+ :param target_object:
266+ (Optional) Unused ``target_object`` here but may be used by a
267+ superclass.
267268
268269 :rtype: tuple of ``response`` (a dictionary of sorts)
269270 and ``content`` (a string).
@@ -324,10 +325,10 @@ def api_request(self, method, path, query_params=None,
324325 that cannot be done. Default is True.
325326
326327 :type _target_object: :class:`object`
327- :param _target_object: (Optional) Protected argument to be used by library
328- callers. This can allow custom behavior, for
329- example, to defer an HTTP request and complete
330- initialization of the object at a later time.
328+ :param _target_object:
329+ (Optional) Protected argument to be used by library callers. This
330+ can allow custom behavior, for example, to defer an HTTP request
331+ and complete initialization of the object at a later time.
331332
332333 :raises: Exception if the response code is not 200 OK.
333334 :rtype: dict or str
0 commit comments