pyg90alarm 2.0.0__tar.gz → 2.0.1__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.
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/PKG-INFO +1 -1
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/alarm.py +2 -2
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm.egg-info/PKG-INFO +1 -1
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/.github/CODEOWNERS +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/.github/workflows/main.yml +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/.gitignore +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/.pylintrc +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/.readthedocs.yaml +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/LICENSE +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/MANIFEST.in +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/README.rst +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/.DS_Store +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/.gitignore +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/api-docs.rst +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/cloud-protocol.rst +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/conf.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/index.rst +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/local-protocol.rst +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/docs/requirements.txt +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/pyproject.toml +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/setup.cfg +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/setup.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/sonar-project.properties +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/callback.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/cloud/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/cloud/const.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/cloud/messages.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/cloud/notifications.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/cloud/protocol.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/const.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/definitions/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/definitions/sensors.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/base_entity.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/base_list.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/device.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/device_list.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/sensor.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/entities/sensor_list.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/exceptions.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/base_cmd.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/config.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/discovery.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/history.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/host_info.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/host_status.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/notifications.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/paginated_cmd.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/paginated_result.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/targeted_discovery.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/local/user_data_crc.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/notifications/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/notifications/base.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/notifications/protocol.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm/py.typed +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm.egg-info/SOURCES.txt +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm.egg-info/dependency_links.txt +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm.egg-info/requires.txt +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/src/pyg90alarm.egg-info/top_level.txt +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/__init__.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/conftest.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/device_mock.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_alarm.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_base_commands.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_cloud_notifications.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_discovery.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_history.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_local_notifications.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tests/test_paginated_commands.py +0 -0
- {pyg90alarm-2.0.0 → pyg90alarm-2.0.1}/tox.ini +0 -0
|
@@ -1064,8 +1064,8 @@ class G90Alarm(G90NotificationProtocol):
|
|
|
1064
1064
|
async def use_cloud_notifications(
|
|
1065
1065
|
self, cloud_local_host: str = CLOUD_NOTIFICATIONS_HOST,
|
|
1066
1066
|
cloud_local_port: int = CLOUD_NOTIFICATIONS_PORT,
|
|
1067
|
-
upstream_host: str = REMOTE_CLOUD_HOST,
|
|
1068
|
-
upstream_port: int = REMOTE_CLOUD_PORT,
|
|
1067
|
+
upstream_host: Optional[str] = REMOTE_CLOUD_HOST,
|
|
1068
|
+
upstream_port: Optional[int] = REMOTE_CLOUD_PORT,
|
|
1069
1069
|
keep_single_connection: bool = True
|
|
1070
1070
|
) -> None:
|
|
1071
1071
|
"""
|
|
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
|
|
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
|
|
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
|