fixed typos
This commit is contained in:
parent
d564b620bc
commit
e211f32c94
|
|
@ -496,7 +496,7 @@ class NodePool:
|
||||||
return available_nodes.get(identifier, None)
|
return available_nodes.get(identifier, None)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_player(cls, guild_id) -> Union[Player, None]:
|
def get_player(cls, guild_id: int) -> Union[Player, None]:
|
||||||
"""Retruns the Exact Player object after Searching all the Nodes.
|
"""Retruns the Exact Player object after Searching all the Nodes.
|
||||||
"""
|
"""
|
||||||
for node in [node for node in cls._nodes.values() if node._available]:
|
for node in [node for node in cls._nodes.values() if node._available]:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue