mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-12-15 23:12:32 +00:00
f197607dad
* deps: update dependency hcloud to v1.26.0 * feat: upgrade vendored files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
9 lines
240 B
Python
9 lines
240 B
Python
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
|