Skip to content

Commit

Permalink
Fix Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Sep 17, 2024
1 parent c391b7f commit da855f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethstaker_deposit/utils/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit da855f6

Please sign in to comment.