removed indentation

This commit is contained in:
2025-07-14 20:14:11 +03:00
parent de079a131f
commit 37c596c5c7

View File

@ -44,7 +44,7 @@ def setup_logging(): # Инициализирует систему логиро
# Добавляем разделитель для нового сеанса
if os.path.exists(LOG_FILE_NAME):
with open(LOG_FILE_NAME, "a", encoding="utf-8") as f:
f.write("\n\n" + "=" * 60 + "\n")
f.write("\n" + "=" * 60 + "\n")
f.write(f"{'ЗАПУЩЕН НОВЫЙ СЕАНС':^60}\n")
f.write("=" * 60 + "\n\n")