Skip to content

Commit

Permalink
fix: private object not exported in top level module (#346)
Browse files Browse the repository at this point in the history
Fixes #345

---------

Signed-off-by: Jürgen Kreileder <jk@blackdown.de>
  • Loading branch information
jkreileder authored Jan 2, 2024
1 parent 2c24efe commit 5281b05
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions hcloud/__init__.py
Original file line number Diff line number Diff line change
@@ -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,
)

0 comments on commit 5281b05

Please sign in to comment.