Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/PredaaA/predacogs
Browse files Browse the repository at this point in the history
  • Loading branch information
PredaaA committed Jul 25, 2020
2 parents dc0c7b8 + 2153f85 commit d55223c
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions converters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .converters import Converters

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = Converters(bot)
Expand Down
4 changes: 4 additions & 0 deletions dbltools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .dbltools import DblTools

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = DblTools(bot)
Expand Down
4 changes: 4 additions & 0 deletions dbltoolslite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .dbltools import DblToolsLite

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = DblToolsLite(bot)
Expand Down
4 changes: 4 additions & 0 deletions fivem/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .fivem import FiveM

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = FiveM(bot)
Expand Down
4 changes: 4 additions & 0 deletions martools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .marttools import MartTools

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = MartTools(bot)
Expand Down
4 changes: 4 additions & 0 deletions nsfw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .nsfw import Nsfw

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = Nsfw(bot)
Expand Down
4 changes: 4 additions & 0 deletions randimages/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .randimages import RandImages

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


async def setup(bot: Red):
cog = RandImages(bot)
Expand Down
4 changes: 4 additions & 0 deletions spacex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .spacex import SpaceX

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = SpaceX(bot)
Expand Down
4 changes: 4 additions & 0 deletions whoplays/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from redbot.core.bot import Red
from .whoplays import WhoPlays

__red_end_user_data_statement__ = (
"This cog does not persistently store data or metadata about users."
)


def setup(bot: Red):
cog = WhoPlays(bot)
Expand Down

0 comments on commit d55223c

Please sign in to comment.