aboutsummaryrefslogtreecommitdiff
path: root/cogs/player.py
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com>2020-08-11 12:38:25 +0000
committerMango0x45 <thomasvoss@live.com>2020-08-11 12:38:25 +0000
commit85ce3053a69c5e62fe6775563b8a7fddba9c071e (patch)
tree6246239c2748dd39d570f045c82492e7e4ed7de5 /cogs/player.py
parent483bd6fb989d0538ee5ebdc167977dbe3e351f97 (diff)
downloadsteve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar.gz
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar.bz2
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar.lz
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar.xz
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.tar.zst
steve-bot-85ce3053a69c5e62fe6775563b8a7fddba9c071e.zip
Organized imports
Diffstat (limited to 'cogs/player.py')
-rw-r--r--cogs/player.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/cogs/player.py b/cogs/player.py
index 8a0eb97..605d5ef 100644
--- a/cogs/player.py
+++ b/cogs/player.py
@@ -18,19 +18,17 @@ e.g You might like to implement a vote before skipping the song or only allow ad
Music bots require lots of work, and tuning. Goodluck.
If you find any bugs feel free to ping me on discord. @Eviee#0666
"""
-import discord
-from discord.ext import commands
-
import asyncio
import itertools
import sys
import traceback
-from async_timeout import timeout
from functools import partial
-from youtube_dl import YoutubeDL
from pathlib import Path
-from discord.ext import tasks
+import discord
+from async_timeout import timeout
+from discord.ext import commands, tasks
+from youtube_dl import YoutubeDL
ytdlopts = {
'format': 'bestaudio/best',