Skip to content

Commit

Permalink
wtf is my ide doing
Browse files Browse the repository at this point in the history
  • Loading branch information
Drapersniper committed Mar 21, 2022
1 parent 9dc1dc2 commit 3315eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion redbot/cogs/audio/core/commands/llset.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from pathlib import Path
from typing import Optional

import discord
from red_commons.logging import getLogger
Expand Down Expand Up @@ -188,7 +189,7 @@ async def command_llsetup_password(self, ctx: commands.Context, password: str):
)

@command_llsetup.command(name="wsport")
async def command_llsetup_wsport(self, ctx: commands.Context, port: Optiona[int] = 2333):
async def command_llsetup_wsport(self, ctx: commands.Context, port: Optional[int] = 2333):
"""Set the Lavalink websocket server port.
Set port to -1 to disable the port and connect to the specified host via ports 80/443
Expand Down

0 comments on commit 3315eef

Please sign in to comment.