def setup(bot: Friendo) -> None: """Adding the help cog.""" if not settings.FRIENDO_API_USER: raise EnvironmentError( "Missing environment variable: FRIENDO_API_USER") if not settings.FRIENDO_API_PASS: raise EnvironmentError( "Missing environment variable: FRIENDO_API_PASS") bot.add_cog(DogeBoard(bot))
def setup(bot: Friendo) -> None: """Load the Utilities cog.""" bot.add_cog(Utilities(bot))
def setup(bot: Friendo) -> None: """Sets up the AdventOfCode cog.""" bot.add_cog(AdventOfCode(bot))
def setup(bot: Friendo) -> None: """Load the Memes cog.""" bot.add_cog(Memes(bot))
def setup(bot: Friendo) -> None: """Load the Todo_List cog.""" bot.add_cog(TodoList(bot))
def setup(bot: Friendo) -> None: """Load the User cog.""" bot.add_cog(User(bot))
def setup(bot: Friendo) -> None: """Load the Image Segmentation cog.""" bot.add_cog(Segmentation(bot))
def setup(bot: Friendo) -> None: """Load the Fun cog.""" bot.add_cog(Fun(bot))
def setup(bot: Friendo) -> None: """Load the Admin cog.""" bot.add_cog(Administration(bot))
def setup(bot: Friendo) -> None: """Sets up the Pixelate cog.""" bot.add_cog(Pixelate(bot))
def setup(bot: Friendo) -> None: """Load the CovidStats cog.""" bot.add_cog(CovidStats(bot))