forked from Firepup650/FireBot
Since this is only used once, it's redundant to make it a variable.
This commit is contained in:
parent
1dbd95bb1e
commit
eb43698ff3
1 changed files with 1 additions and 3 deletions
4
core.py
4
core.py
|
@ -4,11 +4,9 @@ from time import sleep
|
||||||
from sys import argv as args
|
from sys import argv as args
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
|
|
||||||
call = "python3 -u ircbot.py"
|
|
||||||
|
|
||||||
|
|
||||||
def launch(server: str) -> None:
|
def launch(server: str) -> None:
|
||||||
system(f"{call} {server}")
|
system(f"python3 -u ircbot.py {server}")
|
||||||
|
|
||||||
|
|
||||||
threads = {}
|
threads = {}
|
||||||
|
|
Loading…
Reference in a new issue