Skip to content

Commit

Permalink
Disable pylint check for boto3 client usage
Browse files Browse the repository at this point in the history
  • Loading branch information
eemperor committed Jun 4, 2024
1 parent 93dabed commit edabacf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/watchmaker/status/providers/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __tag_aws_instance(self, key, status):
)

try:
client = boto3.client("ec2", self.region)
client = boto3.client("ec2", self.region) # pylint: disable=possibly-used-before-assignment

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

View check run for this annotation

Codecov / codecov/patch

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

Added line #L83 was not covered by tests
response = client.create_tags(
Resources=[
self.instance_id,
Expand Down

0 comments on commit edabacf

Please sign in to comment.