Skip to content

Commit

Permalink
fix async method name
Browse files Browse the repository at this point in the history
  • Loading branch information
rewardone committed Nov 15, 2023
1 parent 24e3d91 commit 31dbf8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ayla_iot_unofficial"
version = "1.2.3"
version = "1.2.4"
authors = [
{ name="Reward One", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/ayla_iot_unofficial/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
AylaReadOnlyPropertyError,
)

__version__ = '1.2.3'
__version__ = '1.2.4'
2 changes: 1 addition & 1 deletion src/ayla_iot_unofficial/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ def start_bypass_mode(self):

async def async_start_bypass_mode(self):
"""Start indefinite bypass"""
return await self.start_bypass_timed_mode(6)
return await self.async_start_bypass_timed_mode(6)

def start_bypass_timed_mode(self, presetTimeCode = 1):
"""
Expand Down

0 comments on commit 31dbf8a

Please sign in to comment.