Skip to content

Commit

Permalink
Run black,
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Dec 7, 2023
1 parent 89b8349 commit 17f8bc9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions wavelink/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ async def send(
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.0.0
"""
clean_path: str = path.removesuffix("/")
Expand Down Expand Up @@ -416,8 +416,8 @@ async def fetch_players(self) -> list[PlayerResponsePayload]:
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.1.0
"""
data: list[PlayerResponse] = await self._fetch_players()
Expand Down Expand Up @@ -469,8 +469,8 @@ async def fetch_player_info(self, guild_id: int, /) -> PlayerResponsePayload | N
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.1.0
"""
try:
Expand Down Expand Up @@ -590,8 +590,8 @@ async def fetch_info(self) -> InfoResponsePayload:
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.1.0
"""
data: InfoResponse = await self._fetch_info()
Expand Down Expand Up @@ -631,8 +631,8 @@ async def fetch_stats(self) -> StatsResponsePayload:
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.1.0
"""
data: StatsResponse = await self._fetch_stats()
Expand Down Expand Up @@ -670,8 +670,8 @@ async def fetch_version(self) -> str:
NodeException
An error occured while making this request to Lavalink,
and Lavalink was unable to send any error information.
.. versionadded:: 3.1.0
"""
data: str = await self._fetch_version()
Expand Down

0 comments on commit 17f8bc9

Please sign in to comment.