diff --git a/hcloud/__init__.py b/hcloud/__init__.py index 544a219..6b69b16 100644 --- a/hcloud/__init__.py +++ b/hcloud/__init__.py @@ -1,4 +1,7 @@ from __future__ import annotations -from ._client import Client # noqa -from ._exceptions import APIException, HCloudException # noqa +from ._client import Client as Client # noqa pylint: disable=C0414 +from ._exceptions import ( # noqa pylint: disable=C0414 + APIException as APIException, + HCloudException as HCloudException, +)