aioamazondevices 6.4.3__tar.gz → 6.4.4__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.

Potentially problematic release.


This version of aioamazondevices might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aioamazondevices
3
- Version: 6.4.3
3
+ Version: 6.4.4
4
4
  Summary: Python library to control Amazon devices
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "aioamazondevices"
3
- version = "6.4.3"
3
+ version = "6.4.4"
4
4
  requires-python = ">=3.12"
5
5
  description = "Python library to control Amazon devices"
6
6
  authors = [
@@ -1,6 +1,6 @@
1
1
  """aioamazondevices library."""
2
2
 
3
- __version__ = "6.4.3"
3
+ __version__ = "6.4.4"
4
4
 
5
5
 
6
6
  from .api import AmazonDevice, AmazonEchoApi
@@ -781,6 +781,10 @@ class AmazonEchoApi:
781
781
  self._login_stored_data.update({"site": f"https://www.amazon.{self._domain}"})
782
782
  await self._save_to_file(self._login_stored_data, "login_data", JSON_EXTENSION)
783
783
 
784
+ # Can take a little while to register device but we need it
785
+ # to be able to pickout account customer ID
786
+ await asyncio.sleep(2)
787
+
784
788
  return self._login_stored_data
785
789
 
786
790
  async def _login_mode_interactive_oauth(