You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
400 B
20 lines
400 B
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()
|