zcc-helper 3.4.dev3__tar.gz → 3.4.dev4__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.
- {zcc_helper-3.4.dev3/zcc_helper.egg-info → zcc_helper-3.4.dev4}/PKG-INFO +1 -1
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/constants.py +1 -1
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/discovery.py +2 -2
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4/zcc_helper.egg-info}/PKG-INFO +1 -1
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/LICENSE.txt +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/README.md +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/setup.cfg +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/setup.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_controller.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_device.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_server.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_socket.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/__init__.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/__main__.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/controller.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/description.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/device.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/errors.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/manufacture_info.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/protocol.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/socket.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/trace.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/watchdog.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc.py +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/SOURCES.txt +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/dependency_links.txt +0 -0
- {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/top_level.txt +0 -0
|
@@ -157,7 +157,7 @@ class ControlPointDiscoveryService:
|
|
|
157
157
|
) -> ControlPointDescription | dict[str, str]:
|
|
158
158
|
"""Validate ability to connect and close a connection.
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
Returns {'result': ControlPointDescription} if OK or {'error': error} if not.
|
|
161
161
|
"""
|
|
162
162
|
|
|
163
163
|
error = None
|
|
@@ -204,4 +204,4 @@ class ControlPointDiscoveryService:
|
|
|
204
204
|
|
|
205
205
|
self.logger.info(self.validation_result)
|
|
206
206
|
|
|
207
|
-
return self.validation_result
|
|
207
|
+
return {'result': self.validation_result}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|