Skip to content

Commit 5281b05

Browse files
authored
fix: private object not exported in top level module (#346)
Fixes #345 --------- Signed-off-by: Jürgen Kreileder <jk@blackdown.de>
1 parent 2c24efe commit 5281b05

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

hcloud/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
from __future__ import annotations
22

3-
from ._client import Client # noqa
4-
from ._exceptions import APIException, HCloudException # noqa
3+
from ._client import Client as Client # noqa pylint: disable=C0414
4+
from ._exceptions import ( # noqa pylint: disable=C0414
5+
APIException as APIException,
6+
HCloudException as HCloudException,
7+
)

0 commit comments

Comments
 (0)