aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/site_api.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-06-26 19:23:46 +0400
committerGravatar Hassan Abouelela <[email protected]>2022-06-26 20:17:26 +0400
commitf17f947006ae55f3baca2eeec7ce804dbfdac238 (patch)
tree7fccd43d33013ae9a4d18093a6fb04708f5aa9c0 /botcore/site_api.py
parentFix Docstring For Role Change Wrapper Util (diff)
Fix Incorrect Typehints & Docstrings
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'botcore/site_api.py')
-rw-r--r--botcore/site_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/site_api.py b/botcore/site_api.py
index dbdf4f3b..d3a58b9c 100644
--- a/botcore/site_api.py
+++ b/botcore/site_api.py
@@ -26,7 +26,7 @@ class ResponseCodeError(ValueError):
Args:
response (:obj:`aiohttp.ClientResponse`): The response object from the request.
response_json: The JSON response returned from the request, if any.
- request_text: The text of the request, if any.
+ response_text: The text of the request, if any.
"""
self.status = response.status
self.response_json = response_json or {}