This commit is contained in:
Boyan 2024-12-04 02:49:13 +01:00
parent b9d2589f8b
commit 6dbf32a5b1

View File

@ -123,7 +123,7 @@ def run_input_cases(program, args):
def python_compile(file_name, args):
try:
if os.system("which pypy3 > /dev/null") == 0:
if os.system("which pypy3 &> /dev/null") == 0:
print(f"{Fore.LIGHTMAGENTA_EX}Using pypy3{Style.RESET_ALL}")
run_input_cases("pypy3 " + file_name, args)
return