Skip to content

Commit

Permalink
abstractions folder is now a module
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperraemaekers committed Jul 9, 2024
1 parent 1b95586 commit 076d7a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: weheat_backend_client
Version: 2024.6.19rc2
Version: 2024.6.19rc3
Summary: Weheat Backend
Home-page: https://github.com/wefabricate/wh-public-backend-client
Author: Jesper Raemaekers
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "weheat_backend_client"
VERSION = "2024.06.19rc2"
VERSION = "2024.06.19rc3"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
3 changes: 3 additions & 0 deletions weheat_backend_client/abstractions/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from weheat_backend_client.abstractions.auth import AbstractAuth
from weheat_backend_client.abstractions.discovery import HeatPumpDiscovery
from weheat_backend_client.abstractions.heat_pump import HeatPump
2 changes: 1 addition & 1 deletion weheat_backend_client/abstractions/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from weheat_backend_client.api.heat_pump_api import HeatPumpApi


class WeheatHeatPumpDiscovery:
class HeatPumpDiscovery:
@dataclass
class HeatPump:
uuid: str
Expand Down

0 comments on commit 076d7a4

Please sign in to comment.