aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/site_api.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-03-27 17:38:29 +0100
committerGravatar Chris Lovering <[email protected]>2022-03-31 20:53:41 +0100
commit8e1e88129ec979840527a9779c779dc52faa4dfd (patch)
treee6bf76015410a4194d9f974c2867a203f64f6f81 /botcore/site_api.py
parentRemove inappropriate abstractmethod tags (diff)
Add __all__ attrs to async_stats and site_api modules
Diffstat (limited to 'botcore/site_api.py')
-rw-r--r--botcore/site_api.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/botcore/site_api.py b/botcore/site_api.py
index ad72b104..dbdf4f3b 100644
--- a/botcore/site_api.py
+++ b/botcore/site_api.py
@@ -151,3 +151,6 @@ class APIClient:
await self.maybe_raise_for_status(resp, raise_for_status)
return await resp.json()
+
+
+__all__ = ['APIClient', 'ResponseCodeError']