mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
Fixing errors due to new discor d library
This commit is contained in:
@@ -3,7 +3,7 @@ from typing import List
|
||||
from discord.ext.commands import Context
|
||||
from discord import Client, Guild, ClientUser, Member
|
||||
from Config.Messages import Messages
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Config.Configs import Configs
|
||||
from Config.Helper import Helper
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from discord.ext.commands import Context
|
||||
from discord import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from discord.ext.commands import Context
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Utils.Utils import Utils
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from discord.ext.commands import Context
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Config.Exceptions import BadCommandUsage
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from typing import Union
|
||||
from discord.ext.commands import Context
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Config.Exceptions import BadCommandUsage, VulkanError, InvalidInput, NumberRequired, UnknownError
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from discord.ext.commands import Context
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Utils.Cleaner import Cleaner
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class PauseHandler(AbstractHandler):
|
||||
|
||||
@@ -11,7 +11,7 @@ from Music.Song import Song
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.ProcessInfo import ProcessInfo
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class PlayHandler(AbstractHandler):
|
||||
|
||||
@@ -4,7 +4,7 @@ from Config.Exceptions import BadCommandUsage, ImpossibleMove
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class PrevHandler(AbstractHandler):
|
||||
|
||||
@@ -4,7 +4,7 @@ from Handlers.HandlerResponse import HandlerResponse
|
||||
from Music.Downloader import Downloader
|
||||
from Utils.Utils import Utils
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class QueueHandler(AbstractHandler):
|
||||
|
||||
@@ -5,7 +5,7 @@ from Handlers.HandlerResponse import HandlerResponse
|
||||
from Config.Exceptions import BadCommandUsage, VulkanError, ErrorRemoving, InvalidInput, NumberRequired
|
||||
from Music.Playlist import Playlist
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class RemoveHandler(AbstractHandler):
|
||||
|
||||
@@ -3,7 +3,7 @@ from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class ResetHandler(AbstractHandler):
|
||||
|
||||
@@ -3,7 +3,7 @@ from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class ResumeHandler(AbstractHandler):
|
||||
|
||||
@@ -3,7 +3,7 @@ from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Config.Exceptions import UnknownError
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
|
||||
|
||||
class ShuffleHandler(AbstractHandler):
|
||||
|
||||
@@ -2,7 +2,7 @@ from discord.ext.commands import Context
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Config.Exceptions import BadCommandUsage
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from discord.ext.commands import Context
|
||||
from Handlers.AbstractHandler import AbstractHandler
|
||||
from Handlers.HandlerResponse import HandlerResponse
|
||||
from Music.MusicBot import VulkanBot
|
||||
from Music.VulkanBot import VulkanBot
|
||||
from Parallelism.ProcessManager import ProcessManager
|
||||
from Parallelism.Commands import VCommands, VCommandsType
|
||||
|
||||
|
||||
Reference in New Issue
Block a user