diff --git a/ethstaker_deposit/utils/terminal.py b/ethstaker_deposit/utils/terminal.py index 7e617272..fbcc444e 100644 --- a/ethstaker_deposit/utils/terminal.py +++ b/ethstaker_deposit/utils/terminal.py @@ -6,7 +6,7 @@ def clear_terminal() -> None: if sys.platform == 'win32': - subprocess.call('cls') + subprocess.call('cls', shell=True) elif sys.platform == 'linux' or sys.platform == 'darwin': if shutil.which('tput'): subprocess.call(['tput', 'reset'])