Skip to content

Commit

Permalink
Move line to satisfy pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
eemperor committed Jun 4, 2024
1 parent 93dabed commit b5ab12f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/watchmaker/status/providers/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,8 @@ def __tag_aws_instance(self, key, status):
self.logger.debug(
"Tag Instance %s with %s:%s", self.instance_id, key, status
)

client = boto3.client("ec2", self.region)

Check warning on line 81 in src/watchmaker/status/providers/aws.py

View check run for this annotation

Codecov / codecov/patch

src/watchmaker/status/providers/aws.py#L81

Added line #L81 was not covered by tests
try:
client = boto3.client("ec2", self.region)
response = client.create_tags(
Resources=[
self.instance_id,
Expand Down

0 comments on commit b5ab12f

Please sign in to comment.