aioamazondevices 2.1.0__tar.gz → 2.2.0__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.
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/PKG-INFO +1 -1
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/pyproject.toml +1 -1
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/__init__.py +1 -1
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/api.py +1 -3
- aioamazondevices-2.2.0/src/aioamazondevices/sounds.py +2874 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/LICENSE +0 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/README.md +0 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/const.py +0 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/exceptions.py +0 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/httpx.py +0 -0
- {aioamazondevices-2.1.0 → aioamazondevices-2.2.0}/src/aioamazondevices/py.typed +0 -0
@@ -630,9 +630,7 @@ class AmazonEchoApi:
|
|
630
630
|
_LOGGER.debug("Session authenticated: %s", authenticated)
|
631
631
|
return bool(authenticated)
|
632
632
|
|
633
|
-
|
634
|
-
self, device: AmazonDevice
|
635
|
-
) -> dict[str, str | None] | None:
|
633
|
+
def get_model_details(self, device: AmazonDevice) -> dict[str, str | None] | None:
|
636
634
|
"""Return model datails."""
|
637
635
|
model_details: dict[str, str | None] | None = DEVICE_TYPE_TO_MODEL.get(
|
638
636
|
device.device_type
|