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:
parent
f6c401a019
commit
6844317920
32 changed files with 215 additions and 210 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue