diff --git a/pomice/events.py b/pomice/events.py index 209e59c..2900519 100644 --- a/pomice/events.py +++ b/pomice/events.py @@ -1,4 +1,4 @@ -from .pool import NodePool +from . import NodePool class PomiceEvent: diff --git a/pomice/player.py b/pomice/player.py index e8cc7ca..c87aa93 100644 --- a/pomice/player.py +++ b/pomice/player.py @@ -5,10 +5,8 @@ import discord from discord import VoiceChannel, VoiceProtocol from discord.ext import commands - -from . import events, filters, objects +from . import events, filters, NodePool, objects from .exceptions import TrackInvalidPosition -from .node import NodePool class Player(VoiceProtocol):