[Admin] fix erroneous await in _ready.set() (#4107)

This commit is contained in:
TrustyJAID 2020-07-23 15:19:18 -06:00 committed by GitHub
parent 0d8a899a65
commit 583f093eb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ class Admin(commands.Cog):
await self.migrate_config_from_0_to_1() await self.migrate_config_from_0_to_1()
await self.config.schema_version.set(1) await self.config.schema_version.set(1)
await self._ready.set() self._ready.set()
async def migrate_config_from_0_to_1(self): async def migrate_config_from_0_to_1(self):