This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord.ext.commands import Cog | |
from discord.ext.commands import MissingPermissions | |
from discord.ext.commands import when_mentioned_or, command, has_permissions | |
from ..db import db | |
class Misc(Cog): | |
def __init__(self, bot): | |
self.bot = bot |