mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2025-01-09 10:48:49 +00:00
ff539800aa
* deps: update dependency hcloud to v1.27.1 * chore: update vendored files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
11 lines
276 B
Python
11 lines
276 B
Python
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,
|
|
)
|
|
|
|
from ._client import * # noqa
|