fixed typos

This commit is contained in:
Crussader 2021-10-27 17:36:35 +04:00 committed by GitHub
parent d564b620bc
commit e211f32c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ class NodePool:
return available_nodes.get(identifier, None)
@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.
"""
for node in [node for node in cls._nodes.values() if node._available]: