fix(PYL-W1401): Anomalous backslash detected

This commit is contained in:
Romain J 2020-11-12 00:07:51 +01:00
parent cfd59def74
commit 834f071332

View file

@ -9,8 +9,8 @@ from rich.console import Console
console = Console()
TOKEN_REPLACEMENT = "\*" * random.randint(3, 15)
PASSWORD_REPLACEMENT = "\*" * random.randint(3, 15)
TOKEN_REPLACEMENT = "\\*" * random.randint(3, 15)
PASSWORD_REPLACEMENT = "\\*" * random.randint(3, 15)
class ContextPlus(commands.Context):