mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
fix: imports
This commit is contained in:
parent
3bfbd7c54c
commit
4779a7bfd8
4 changed files with 11 additions and 8 deletions
|
|
@ -4,7 +4,7 @@ import json
|
|||
from unittest.mock import MagicMock
|
||||
|
||||
from plugins.inventory.hcloud import InventoryModule, first_ipv6_address
|
||||
from plugins.module_utils.vendor.hcloud.servers import BoundServer
|
||||
from plugins.module_utils._vendor.hcloud.servers import BoundServer
|
||||
|
||||
|
||||
def test_first_ipv6_address():
|
||||
|
|
|
|||
|
|
@ -4,13 +4,14 @@ from datetime import datetime, timedelta, timezone
|
|||
from unittest import mock
|
||||
|
||||
import pytest
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.deprecation import (
|
||||
|
||||
from plugins.module_utils._deprecation import (
|
||||
deprecated_server_type_warning,
|
||||
)
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.vendor.hcloud.locations import (
|
||||
from plugins.module_utils._vendor.hcloud.locations import (
|
||||
BoundLocation,
|
||||
)
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.vendor.hcloud.server_types import (
|
||||
from plugins.module_utils._vendor.hcloud.server_types import (
|
||||
BoundServerType,
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,12 @@ import traceback
|
|||
from datetime import datetime, timezone
|
||||
|
||||
import pytest
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.hcloud import AnsibleHCloud
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.vendor.hcloud import (
|
||||
|
||||
from plugins.module_utils._base import AnsibleHCloud
|
||||
from plugins.module_utils._vendor.hcloud import (
|
||||
APIException,
|
||||
)
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.vendor.hcloud.actions import (
|
||||
from plugins.module_utils._vendor.hcloud.actions import (
|
||||
Action,
|
||||
ActionException,
|
||||
ActionFailedException,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import pytest
|
||||
from ansible_collections.hetzner.hcloud.plugins.module_utils.ssh import (
|
||||
|
||||
from plugins.module_utils._ssh import (
|
||||
ssh_public_key_md5_fingerprint,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue