From dd2400df6a67ee295708bb2da1d0f202bbac43cf Mon Sep 17 00:00:00 2001 From: Dominik Gabi Date: Fri, 7 Dec 2018 14:35:37 -0800 Subject: [PATCH] Fix property annotation in `third_party/2and3/boto/connection.pyi` (#2675) --- third_party/2and3/boto/connection.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/2and3/boto/connection.pyi b/third_party/2and3/boto/connection.pyi index d8c40cbf8..605249ea4 100644 --- a/third_party/2and3/boto/connection.pyi +++ b/third_party/2and3/boto/connection.pyi @@ -70,7 +70,7 @@ class AWSAuthConnection: @property def aws_access_key_id(self): ... @property - def gs_access_key_id(self): ... # type: Any + def gs_access_key_id(self) -> Any: ... access_key = ... # type: Any @property def aws_secret_access_key(self): ...