Update main.py

This commit is contained in:
Ground-Zerro
2024-03-29 14:37:10 +11:00
parent 1852f8783a
commit dae377d3db

View File

@@ -144,7 +144,10 @@ def main():
else:
# Interactive service selection
while True:
os.system('clear')
if os.name == 'nt': # Для пользователей Windows
os.system('cls') # Очистить экран
else:
os.system('clear')
print("Выберите сервисы:\n")
print("0 - Отметить все")
for idx, (service, url) in enumerate(urls.items(), 1):