Skip to content

Commit

Permalink
Merge pull request #29 from peribeir/dev
Browse files Browse the repository at this point in the history
Fix get_interfaces
  • Loading branch information
peribeir authored Jun 8, 2023
2 parents f12a6c6 + e3d817c commit c222c17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion homepilot/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def async_get_interfaces(self):
await self.authenticate()
async with aiohttp.ClientSession(cookie_jar=self.cookie_jar) as session:
async with session.get(
f"http://{self.host}service/system/networkmgr/v1/interfaces"
f"http://{self.host}/service/system/networkmgr/v1/interfaces"
) as response:
response = await response.json()
return response
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pyrademacher",
version="0.9.4",
version="0.9.5",
author="Pedro Ribeiro",
author_email="pedroeusebio@gmail.com",
description="Control devices connected to your Rademacher Homepilot "
Expand Down

0 comments on commit c222c17

Please sign in to comment.