aioccl 2024.7.2__tar.gz → 2024.7.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aioccl
3
- Version: 2024.7.2
3
+ Version: 2024.7.3
4
4
  Summary: A Python library for CCL API server
5
5
  Home-page: https://github.com/fkiscd/aioccl
6
6
  Download-URL: https://github.com/fkiscd/aioccl
@@ -23,7 +23,7 @@ class CCLDevice:
23
23
  self._version: str | None
24
24
  self._binary_sensors: dict[str, CCLSensor] | None = {}
25
25
  self._sensors: dict[str, CCLSensor] | None = {}
26
- self.last_updated_time: float | None
26
+ self._last_updated_time: float | None
27
27
 
28
28
  self._new_sensors: list[CCLSensor] | None = []
29
29
 
@@ -35,6 +35,10 @@ class CCLSensor:
35
35
  if self.sensor_type == CCLSensorTypes.CH_SENSOR_TYPE:
36
36
  return CCL_CH_SENSOR_TYPES[self.sensor_type]
37
37
  return self._value
38
+
39
+ @value.setter
40
+ def value(self, new_value):
41
+ self._value = new_value
38
42
 
39
43
  @dataclass
40
44
  class CCLSensorPreset:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aioccl
3
- Version: 2024.7.2
3
+ Version: 2024.7.3
4
4
  Summary: A Python library for CCL API server
5
5
  Home-page: https://github.com/fkiscd/aioccl
6
6
  Download-URL: https://github.com/fkiscd/aioccl
@@ -1,7 +1,7 @@
1
1
  from pathlib import Path
2
2
  from setuptools import find_packages, setup
3
3
 
4
- VERSION = "2024.7.2"
4
+ VERSION = "2024.7.3"
5
5
 
6
6
  ROOT_DIR = Path(__file__).parent.resolve()
7
7
 
File without changes
File without changes
File without changes
File without changes
File without changes