[Quiz] Move data deletion statement

This commit is contained in:
aikaterna
2020-09-06 23:55:13 -07:00
committed by GitHub
parent e8d4be26eb
commit 0f5c5eac9d

View File

@@ -22,10 +22,6 @@ def check_global_setting_admin():
either a bot admin or has the manage_guild permission.
"""
async def red_delete_data_for_user(self, **kwargs):
""" Nothing to delete """
return
async def pred(ctx: commands.Context):
author = ctx.author
if not await bank.is_global():
@@ -53,6 +49,10 @@ class Quiz(commands.Cog):
Originally by Keane for Red v2
"""
async def red_delete_data_for_user(self, **kwargs):
""" Nothing to delete """
return
def __init__(self, bot):
self.bot = bot