Skip to content

Commit

Permalink
Remove loop from open_connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommatheussen committed Jun 30, 2022
1 parent c527cf1 commit c5b3ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satel_integra/satel_integra.py
Expand Up @@ -173,7 +173,7 @@ async def connect(self):

try:
self._reader, self._writer = await asyncio.open_connection(
self._host, self._port, loop=self._loop)
self._host, self._port)
_LOGGER.debug("sucess connecting...")

except Exception as e:
Expand Down

3 comments on commit c5b3ed5

@nobet78
Copy link

@nobet78 nobet78 commented on c5b3ed5 Jul 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need help. In my home assistant I use the satel integration in the file configuration.yaml. I don't know where to find the satel_integra.py file to apply the change. How can I do this

@remmob
Copy link

@remmob remmob commented on c5b3ed5 Jul 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have the same problem, where can I find the file?
Or is there an update pushed?

@c-soft
Copy link
Owner

@c-soft c-soft commented on c5b3ed5 Jul 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's in. WIll land in 22.7.01 official

Please sign in to comment.