diff options
author | Parker <contact@pkrm.dev> | 2024-03-31 01:08:13 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-03-31 01:08:13 -0500 |
commit | 6fca198184919c81e9d2129b2be24612c28825e2 (patch) | |
tree | 151da14c6908868fbc8d8191fe7a15cb07f1c006 /code/cogs | |
parent | 978b6a48f2525f68ff3d2d66da56355d17cbd8d0 (diff) |
Black code reformatting
Diffstat (limited to 'code/cogs')
-rw-r--r-- | code/cogs/clear.py | 1 | ||||
-rw-r--r-- | code/cogs/nowplaying.py | 1 | ||||
-rw-r--r-- | code/cogs/pause.py | 1 | ||||
-rw-r--r-- | code/cogs/play.py | 1 | ||||
-rw-r--r-- | code/cogs/queue.py | 1 | ||||
-rw-r--r-- | code/cogs/remove.py | 1 | ||||
-rw-r--r-- | code/cogs/resume.py | 1 | ||||
-rw-r--r-- | code/cogs/shuffle.py | 1 | ||||
-rw-r--r-- | code/cogs/stop.py | 1 | ||||
-rw-r--r-- | code/cogs/tree_sync.py | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/code/cogs/clear.py b/code/cogs/clear.py index 4dded33..8711701 100644 --- a/code/cogs/clear.py +++ b/code/cogs/clear.py @@ -11,7 +11,6 @@ class Clear(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) async def clear(self, interaction: discord.Interaction): diff --git a/code/cogs/nowplaying.py b/code/cogs/nowplaying.py index 4f5f6b1..84898cd 100644 --- a/code/cogs/nowplaying.py +++ b/code/cogs/nowplaying.py @@ -12,7 +12,6 @@ class NowPlaying(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) async def np(self, interaction: discord.Interaction): diff --git a/code/cogs/pause.py b/code/cogs/pause.py index c231d43..522a376 100644 --- a/code/cogs/pause.py +++ b/code/cogs/pause.py @@ -11,7 +11,6 @@ class Pause(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) async def pause(self, interaction: discord.Interaction): diff --git a/code/cogs/play.py b/code/cogs/play.py index 454881b..b61d567 100644 --- a/code/cogs/play.py +++ b/code/cogs/play.py @@ -17,7 +17,6 @@ class Play(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) @app_commands.describe(query="Name or link of song") diff --git a/code/cogs/queue.py b/code/cogs/queue.py index 22a2b1e..1b26991 100644 --- a/code/cogs/queue.py +++ b/code/cogs/queue.py @@ -13,7 +13,6 @@ class Queue(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) @app_commands.describe(page="Queue page number - leave blank if you are unsure") diff --git a/code/cogs/remove.py b/code/cogs/remove.py index ac1a720..0f1a8f3 100644 --- a/code/cogs/remove.py +++ b/code/cogs/remove.py @@ -11,7 +11,6 @@ class Remove(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) @app_commands.describe(number="Song number to have removed") diff --git a/code/cogs/resume.py b/code/cogs/resume.py index ba4a9d1..51d3348 100644 --- a/code/cogs/resume.py +++ b/code/cogs/resume.py @@ -11,7 +11,6 @@ class Resume(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) async def resume(self, interaction: discord.Interaction): diff --git a/code/cogs/shuffle.py b/code/cogs/shuffle.py index 88e81da..ba78957 100644 --- a/code/cogs/shuffle.py +++ b/code/cogs/shuffle.py @@ -11,7 +11,6 @@ class Shuffle(commands.GroupCog, name="shuffle"): def __init__(self, bot): self.bot = bot - @app_commands.command(name="on") @app_commands.check(Music.create_player) async def shuffle_on(self, interaction: discord.Interaction): diff --git a/code/cogs/stop.py b/code/cogs/stop.py index eb3341b..795182f 100644 --- a/code/cogs/stop.py +++ b/code/cogs/stop.py @@ -11,7 +11,6 @@ class Stop(commands.Cog): def __init__(self, bot): self.bot = bot - @app_commands.command() @app_commands.check(Music.create_player) async def stop(self, interaction: discord.Interaction): diff --git a/code/cogs/tree_sync.py b/code/cogs/tree_sync.py index cdc172d..5050730 100644 --- a/code/cogs/tree_sync.py +++ b/code/cogs/tree_sync.py @@ -6,7 +6,6 @@ class TreeSync(commands.Cog): def __init__(self, bot): self.bot = bot - @commands.command() @commands.dm_only() @commands.is_owner() |