| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from discord.utils import get |
||
| 2 | from discord.ext import commands |
||
| 3 | from cogs.cogbase import BaseCog |
||
| 4 | from modules.get_settings import get_settings |
||
| 5 | |||
| 6 | guild_ids = get_settings("guild") |
||
| 7 | |||
| 8 | |||
| 9 | class LeaderboardsCog(BaseCog): |
||
| 10 | def __init__(self, base): |
||
| 11 | super().__init__(base) |
||
| 12 | |||
| 13 | async def update_leaderboards(self): |
||
| 14 | pass |
||
| 15 | |||
| 16 | async def print_leaderboards(self): |
||
| 17 | pass |
||
| 18 | |||
| 19 | |||
| 20 | def setup(bot: commands.Bot): |
||
| 21 | bot.add_cog(LeaderboardsCog(bot)) |
||
| 22 |