python-izone 1.3.0__py3-none-any.whl → 1.3.1__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.
- pizone/discovery.py +1 -5
- pizone/version.py +2 -2
- {python_izone-1.3.0.dist-info → python_izone-1.3.1.dist-info}/METADATA +1 -1
- {python_izone-1.3.0.dist-info → python_izone-1.3.1.dist-info}/RECORD +6 -6
- {python_izone-1.3.0.dist-info → python_izone-1.3.1.dist-info}/WHEEL +0 -0
- {python_izone-1.3.0.dist-info → python_izone-1.3.1.dist-info}/licenses/licence.txt +0 -0
pizone/discovery.py
CHANGED
|
@@ -448,11 +448,7 @@ class DiscoveryService:
|
|
|
448
448
|
|
|
449
449
|
def _discovery_received(self, data: bytes) -> None:
|
|
450
450
|
message = data.decode().split(",")
|
|
451
|
-
if (
|
|
452
|
-
len(message) < 3
|
|
453
|
-
or message[0] != "ASPort_12107"
|
|
454
|
-
or (len(message) >= 4 and {"iZone", "iZoneV2"}.isdisjoint(message[3:]))
|
|
455
|
-
):
|
|
451
|
+
if len(message) < 3 or message[0] != "ASPort_12107":
|
|
456
452
|
_LOG.warning("Invalid Message Received: %s", data.decode())
|
|
457
453
|
return
|
|
458
454
|
|
pizone/version.py
CHANGED
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '1.3.
|
|
22
|
-
__version_tuple__ = version_tuple = (1, 3,
|
|
21
|
+
__version__ = version = '1.3.1'
|
|
22
|
+
__version_tuple__ = version_tuple = (1, 3, 1)
|
|
23
23
|
|
|
24
24
|
__commit_id__ = commit_id = None
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
pizone/__init__.py,sha256=xRQgtXzCtsGhJDBOzDxV105Trv2NCFe8Em6fZEqZ4bc,997
|
|
2
2
|
pizone/controller.py,sha256=mR7-tJkdkXx-s7M32ZWpOUED8Gw_7NPTkUnLjnPhB2Q,24568
|
|
3
|
-
pizone/discovery.py,sha256=
|
|
3
|
+
pizone/discovery.py,sha256=tvZs5npvL2y41vyYxn5V6EDCI9v27_Z-vy_ezSN-RA4,18133
|
|
4
4
|
pizone/exceptions.py,sha256=mWsvXzBNh6mKOPs0QFLqgO6ipa6Se6PEGhFTwr9_ehA,362
|
|
5
5
|
pizone/power.py,sha256=Rp5ZoT-L8YR0mraF8YNaUqfgZTvgSZSNuBT0U5Nzt70,8536
|
|
6
6
|
pizone/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
pizone/version.py,sha256=
|
|
7
|
+
pizone/version.py,sha256=x_Vew2VGpHa9c663j9Zg8FzEkVKHvv3k0XiN4-Ja9uw,520
|
|
8
8
|
pizone/zone.py,sha256=rDv-Q9k9HGIzK3arBxpKoAa-xRGETQkgBOTulMdOhqc,7163
|
|
9
|
-
python_izone-1.3.
|
|
10
|
-
python_izone-1.3.
|
|
11
|
-
python_izone-1.3.
|
|
12
|
-
python_izone-1.3.
|
|
9
|
+
python_izone-1.3.1.dist-info/METADATA,sha256=oN4I7S2YE8C3PtBfakmqkdr6rYs-tZsENG_M4WNM1a0,2657
|
|
10
|
+
python_izone-1.3.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
11
|
+
python_izone-1.3.1.dist-info/licenses/licence.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
12
|
+
python_izone-1.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|