Skip to content

Commit

Permalink
Merge pull request #20 from Tommatheussen/patch-1
Browse files Browse the repository at this point in the history
Remove loop from open_connection
  • Loading branch information
c-soft authored Jul 4, 2022
2 parents c527cf1 + c5b3ed5 commit 4ac9aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satel_integra/satel_integra.py
Original file line number Diff line number Diff line change
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

0 comments on commit 4ac9aa6

Please sign in to comment.