Add missing data statements. (#251)

This commit is contained in:
PredaaA
2021-10-19 01:56:05 +02:00
committed by GitHub
parent d34732def7
commit 43902aefc9
18 changed files with 47 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
from .trackdecoder import TrackDecoder
__red_end_user_data_statement__ = "This cog does not persistently store data or metadata about users."
def setup(bot):
bot.add_cog(TrackDecoder(bot))

View File

@@ -14,6 +14,10 @@ class TrackDecoder(commands.Cog):
def __init__(self, bot):
self.bot = bot
async def red_delete_data_for_user(self, **kwargs):
"""Nothing to delete"""
return
@checks.is_owner()
@commands.command()
@commands.guild_only()