import discord from discord.ext import commands from libs.Cog import Cog class Poll(Cog): @commands.command() async def poll(self, ctx, *, question): print("poll command called") async def setup(bot): await bot.add_cog(Poll(bot))