diff --git a/src/utils/terminal.py b/src/utils/terminal.py index c507692..c9d4e8c 100644 --- a/src/utils/terminal.py +++ b/src/utils/terminal.py @@ -10,7 +10,7 @@ def clear(): """call the command for clearing the terminal depending on your system""" - subprocess.run("cls" if os.name == "nt" else "clear", shell=True) + subprocess.run("cls" if os.name == "nt" else "clear") def erase(): """Erase last terminal line (this should work on all systems)"""