From 79d31f141469dd8d70847ce6b49f6bbc341bb651 Mon Sep 17 00:00:00 2001 From: Christopher Brichford Date: Wed, 20 Jan 2016 19:08:06 -0800 Subject: [PATCH] Adding missing return statement. --- aiobotocore/endpoint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiobotocore/endpoint.py b/aiobotocore/endpoint.py index c77b2a46..621a8a18 100644 --- a/aiobotocore/endpoint.py +++ b/aiobotocore/endpoint.py @@ -45,6 +45,7 @@ def __getattr__(self, item): def __dir__(self): attrs = dir(self.__content) attrs.append('close') + return attrs def close(self): self.__response.close()