mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
refactor: remove unneeded to_native calls (#477)
##### SUMMARY Since we only support python >=3.8, the `to_native` python2/3 compatibility function is not needed anymore. We only keep it for printing a traceback free exception message. Where a type conversion is needed, we use the built-in `str()` function.
This commit is contained in:
parent
64f7824cc8
commit
4bb02b9cd2
34 changed files with 394 additions and 453 deletions
|
|
@ -118,7 +118,6 @@ hcloud_datacenter_info:
|
|||
"""
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.common.text.converters import to_native
|
||||
|
||||
from ..module_utils.hcloud import AnsibleHCloud
|
||||
from ..module_utils.vendor.hcloud import HCloudException
|
||||
|
|
@ -139,10 +138,10 @@ class AnsibleHCloudDatacenterInfo(AnsibleHCloud):
|
|||
|
||||
tmp.append(
|
||||
{
|
||||
"id": to_native(datacenter.id),
|
||||
"name": to_native(datacenter.name),
|
||||
"description": to_native(datacenter.description),
|
||||
"location": to_native(datacenter.location.name),
|
||||
"id": str(datacenter.id),
|
||||
"name": datacenter.name,
|
||||
"description": datacenter.description,
|
||||
"location": datacenter.location.name,
|
||||
"server_types": {
|
||||
"available": [o.id for o in datacenter.server_types.available],
|
||||
"available_for_migration": [o.id for o in datacenter.server_types.available_for_migration],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue