Delete Modules/All_Pages/clear_screen.py

This commit is contained in:
2024-11-24 18:12:29 -05:00
parent 27c265f70c
commit 39519a99da

View File

@ -1,9 +0,0 @@
import os
import platform
def clear_screen():
# Check the system platform and use the appropriate command
if platform.system().lower() == "windows":
os.system('cls') # Windows command to clear the screen
else:
os.system('clear') # Unix-based (Linux/macOS) command to clear the screen