Fix property annotation in third_party/2and3/boto/connection.pyi (#2675)

This commit is contained in:
Dominik Gabi
2018-12-07 14:35:37 -08:00
committed by Sebastian Rittau
parent b3ced5b8c0
commit dd2400df6a

View File

@@ -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): ...