Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar242 committed Sep 26, 2024
1 parent 560ede5 commit 0ccaa32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/elb_classic_lb_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,9 @@ def get_tags(connection: Any, load_balancer_name: str) -> Dict[str, Any]:
return boto3_tag_list_to_ansible_dict(tags[0]["Tags"])


def lb_instance_health(connection: Any, load_balancer_name: str, instances: List[Dict[str, Any]], state: str) -> Tuple[List[str], int]:
def lb_instance_health(
connection: Any, load_balancer_name: str, instances: List[Dict[str, Any]], state: str
) -> Tuple[List[str], int]:
"""
Describes the health status of instances associated with a specific Elastic Load Balancer (ELB).
Expand Down Expand Up @@ -501,9 +503,7 @@ def main():
supports_check_mode=True,
)

connection = module.client(
"elb", retry_decorator=AWSRetry.jittered_backoff(retries=5, delay=5)
)
connection = module.client("elb", retry_decorator=AWSRetry.jittered_backoff(retries=5, delay=5))

try:
elbs = list_elbs(connection, module.params.get("names"))
Expand Down

0 comments on commit 0ccaa32

Please sign in to comment.