diff options
author | 2022-03-27 17:38:29 +0100 | |
---|---|---|
committer | 2022-03-31 20:53:41 +0100 | |
commit | 8e1e88129ec979840527a9779c779dc52faa4dfd (patch) | |
tree | e6bf76015410a4194d9f974c2867a203f64f6f81 /botcore/async_stats.py | |
parent | Remove inappropriate abstractmethod tags (diff) |
Add __all__ attrs to async_stats and site_api modules
Diffstat (limited to 'botcore/async_stats.py')
-rw-r--r-- | botcore/async_stats.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/botcore/async_stats.py b/botcore/async_stats.py index 3ef28e1a..fef5b2d6 100644 --- a/botcore/async_stats.py +++ b/botcore/async_stats.py @@ -52,3 +52,6 @@ class AsyncStatsClient(StatsClientBase): async def _async_send(self, data: str) -> None: """Send data to the statsd server using the async transport.""" self._transport.sendto(data.encode('ascii'), self._addr) + + +__all__ = ['AsyncStatsClient'] |