From eb43698ff3fbb858c5234d40e53f7092eb920b93 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Wed, 25 Oct 2023 20:57:56 -0500 Subject: [PATCH] Since this is only used once, it's redundant to make it a variable. --- core.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core.py b/core.py index 223bb95..f025b96 100644 --- a/core.py +++ b/core.py @@ -4,11 +4,9 @@ from time import sleep from sys import argv as args from threading import Thread -call = "python3 -u ircbot.py" - def launch(server: str) -> None: - system(f"{call} {server}") + system(f"python3 -u ircbot.py {server}") threads = {}