shizmob / pydle

An IRCv3-compliant Python 3 IRC library.
BSD 3-Clause "New" or "Revised" License
154 stars 47 forks source link

Add Missing awaits in coroutine calls #170

Closed Rixxan closed 2 years ago

Rixxan commented 2 years ago

Found in #169 update, including in own PR per request.

A number of _sync_user() calls should be awaited, and are not in the current code ( Caused by #164 )

This fixes that situation and ensures these calls are all awaited.