Homevolt 0.2.3__py3-none-any.whl → 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
homevolt/__init__.py CHANGED
@@ -1,6 +1,5 @@
1
1
  """Python library for Homevolt EMS devices."""
2
2
 
3
- from .device import Device
4
3
  from .exceptions import (
5
4
  HomevoltAuthenticationError,
6
5
  HomevoltConnectionError,
@@ -8,10 +7,9 @@ from .exceptions import (
8
7
  HomevoltError,
9
8
  )
10
9
  from .homevolt import Homevolt
11
- from .models import DeviceMetadata, Sensor, SensorType
10
+ from .models import DeviceMetadata, Sensor
12
11
 
13
12
  __all__ = [
14
- "Device",
15
13
  "DeviceMetadata",
16
14
  "Homevolt",
17
15
  "HomevoltAuthenticationError",
@@ -19,5 +17,4 @@ __all__ = [
19
17
  "HomevoltDataError",
20
18
  "HomevoltError",
21
19
  "Sensor",
22
- "SensorType",
23
20
  ]