diff --git a/hcloud/hcloud.py b/hcloud/hcloud.py deleted file mode 100644 index 9de1cfe..0000000 --- a/hcloud/hcloud.py +++ /dev/null @@ -1,12 +0,0 @@ -from __future__ import annotations - -import warnings - -warnings.warn( - "The 'hcloud.hcloud' module is deprecated, please import from the 'hcloud' module instead (e.g. 'from hcloud import Client').", - DeprecationWarning, - stacklevel=2, -) - -# pylint: disable=wildcard-import,wrong-import-position,unused-wildcard-import -from ._client import * # noqa diff --git a/tests/unit/test_hcloud.py b/tests/unit/test_hcloud.py deleted file mode 100644 index c6931d7..0000000 --- a/tests/unit/test_hcloud.py +++ /dev/null @@ -1,8 +0,0 @@ -from __future__ import annotations - -import pytest - - -def test_deprecated_hcloud_hcloud_module(): - with pytest.deprecated_call(): - from hcloud.hcloud import Client # noqa