Skip to content

Commit

Permalink
Add intialization
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouwh authored and bamthomas committed Oct 13, 2023
1 parent 9f4568f commit e6fed53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions aioimaplib/aioimaplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@ def __init__(self, host: str = '127.0.0.1', port: int = IMAP4_PORT, loop: asynci
self.host = host
self.protocol = None
self._idle_waiter = None
self.tasks: set[Future] = set()
self.create_client(host, port, loop, conn_lost_cb, ssl_context)

def create_client(self, host: str, port: int, loop: asyncio.AbstractEventLoop,
Expand Down

0 comments on commit e6fed53

Please sign in to comment.