[V3] Disregard limitations on repo names (#1349)

This commit is contained in:
Will
2018-02-26 01:21:13 -05:00
committed by palmtree5
parent 09ddfe4250
commit 1363bc3f43
3 changed files with 2 additions and 8 deletions

View File

@@ -4,11 +4,6 @@ from .repo_manager import RepoManager
from .installable import Installable
class RepoName(commands.Converter):
async def convert(self, ctx: commands.Context, arg: str) -> str:
return RepoManager.validate_and_normalize_repo_name(arg)
class InstalledCog(commands.Converter):
async def convert(self, ctx: commands.Context, arg: str) -> Installable:
downloader = ctx.bot.get_cog("Downloader")