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.
Files changed (27) hide show
  1. {zcc_helper-3.4.dev3/zcc_helper.egg-info → zcc_helper-3.4.dev4}/PKG-INFO +1 -1
  2. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/constants.py +1 -1
  3. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/discovery.py +2 -2
  4. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4/zcc_helper.egg-info}/PKG-INFO +1 -1
  5. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/LICENSE.txt +0 -0
  6. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/README.md +0 -0
  7. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/setup.cfg +0 -0
  8. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/setup.py +0 -0
  9. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_controller.py +0 -0
  10. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_device.py +0 -0
  11. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_server.py +0 -0
  12. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/tests/test_socket.py +0 -0
  13. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/__init__.py +0 -0
  14. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/__main__.py +0 -0
  15. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/controller.py +0 -0
  16. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/description.py +0 -0
  17. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/device.py +0 -0
  18. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/errors.py +0 -0
  19. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/manufacture_info.py +0 -0
  20. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/protocol.py +0 -0
  21. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/socket.py +0 -0
  22. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/trace.py +0 -0
  23. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc/watchdog.py +0 -0
  24. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc.py +0 -0
  25. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/SOURCES.txt +0 -0
  26. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/dependency_links.txt +0 -0
  27. {zcc_helper-3.4.dev3 → zcc_helper-3.4.dev4}/zcc_helper.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zcc_helper
3
- Version: 3.4.dev3
3
+ Version: 3.4.dev4
4
4
  Summary: ZIMI ZCC helper module
5
5
  Author: Mark Hannon
6
6
  Author-email: mark.hannon@gmail.com
@@ -9,4 +9,4 @@ APP_ID = "ZvWqWJQB"
9
9
  APP_TOKEN = "3422ecbb-cf6a-404c-b3dc-2023dd213535"
10
10
 
11
11
  NAME = "zcc_helper"
12
- VERSION = "3.4-dev3"
12
+ VERSION = "3.4-dev4"
@@ -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
- Return a ControlPointDescription if OK or error dictionary if not.
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}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zcc_helper
3
- Version: 3.4.dev3
3
+ Version: 3.4.dev4
4
4
  Summary: ZIMI ZCC helper module
5
5
  Author: Mark Hannon
6
6
  Author-email: mark.hannon@gmail.com
File without changes
File without changes
File without changes
File without changes
File without changes