from discord.ext import tasks import traceback import asyncio class Extension: core = None def __init__(self, core): self.core = core async def task(self, timeout = 15): await self.core.wait_until_ready() while True: await self.updater() await asyncio.sleep(timeout) async def updater(self): try: self.core.stats = await self.core.GetStats() except: traceback.print_exc()