* Simple ones first * Less simple but still simple. * Slightly more complicated * use correct name * move to module * Black -l 120 * review * give users the proper feedback Co-authored-by: aikaterna <20862007+aikaterna@users.noreply.github.com>
17 lines
487 B
Python
17 lines
487 B
Python
from .warcraftlogs import WarcraftLogs
|
|
|
|
__red_end_user_data_statement__ = (
|
|
"This cog stores data provided by users "
|
|
"for the express purpose of redisplaying. "
|
|
"It does not store user data which was not "
|
|
"provided through a command. "
|
|
"Users may remove their own content "
|
|
"without making a data removal request. "
|
|
"This cog does not support data requests, "
|
|
"but will respect deletion requests."
|
|
)
|
|
|
|
|
|
def setup(bot):
|
|
bot.add_cog(WarcraftLogs(bot))
|