We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c24efe commit 5281b05Copy full SHA for 5281b05
1 file changed
hcloud/__init__.py
@@ -1,4 +1,7 @@
1
from __future__ import annotations
2
3
-from ._client import Client # noqa
4
-from ._exceptions import APIException, HCloudException # noqa
+from ._client import Client as Client # noqa pylint: disable=C0414
+from ._exceptions import ( # noqa pylint: disable=C0414
5
+ APIException as APIException,
6
+ HCloudException as HCloudException,
7
+)
0 commit comments