diff --git a/cah/__init__.py b/cah/__init__.py index e0c6273..25a05f4 100644 --- a/cah/__init__.py +++ b/cah/__init__.py @@ -1,8 +1,5 @@ -from redbot.core import commands, data_manager from .cah import CardsAgainstHumanity -def setup(bot: commands.Bot): - n = CardsAgainstHumanity(bot) - data_manager.load_bundled_data(n, __file__) - bot.add_cog(n) +def setup(bot): + bot.add_cog(CardsAgainstHumanity(bot))