1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

refactor: fix pylint invalid variable name (#312)

##### SUMMARY

Pylint complains about too short/meaningless variable names. We want to
be explicit when naming variables.
This commit is contained in:
Jonas L 2023-08-25 16:19:15 +02:00 committed by GitHub
parent f6c401a019
commit 6844317920
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 215 additions and 210 deletions

View file

@ -390,8 +390,8 @@ class AnsibleHCloudLoadBalancerInfo(AnsibleHCloud):
self.hcloud_load_balancer_info = self.client.load_balancers.get_all(**params)
except HCloudException as e:
self.fail_json_hcloud(e)
except HCloudException as exception:
self.fail_json_hcloud(exception)
@classmethod
def define_module(cls):