Skip to content

Commit

Permalink
change return value type in python docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
diodonfrost committed Oct 6, 2019
1 parent 34ca309 commit b5a76a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package/ec2_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def list_instances(self, tag_key, tag_value):
List name of all ec2 instances all ec2 instances
with specific tag and return it in list.
:yield str:
:yield Iterator[str]:
The Id of ec2 instances
"""
paginator = self.ec2.get_paginator("describe_instances")
Expand Down
4 changes: 2 additions & 2 deletions package/rds_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def list_clusters(self, tag_key, tag_value):
:param str tag_value:
Aws tag value to use for filter resources
:yield str:
:yield Iterator[str]:
The list Id of filtered rds clusters
"""
paginator = self.rds.get_paginator("describe_db_clusters")
Expand All @@ -116,7 +116,7 @@ def list_instances(self, tag_key, tag_value):
:param str tag_value:
Aws tag value to use for filter resources
:yield str:
:yield Iterator[str]:
The list Id of filtered rds instances
"""
paginator = self.rds.get_paginator("describe_db_instances")
Expand Down
2 changes: 1 addition & 1 deletion package/spot_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def list_spot(self, tag_key, tag_value):
:param str tag_value:
Aws tag value to use for filter resources
:yield str:
:yield Iterator[str]:
The Id of the spot instances
"""
paginator = self.ec2.get_paginator("describe_instances")
Expand Down

0 comments on commit b5a76a5

Please sign in to comment.