Set 30 lines per page
Mirror and run GitLab CI / build (push) Waiting to run
Ruff / ruff (push) Waiting to run

This commit is contained in:
admin
2026-06-19 16:18:15 +00:00
parent cb27ba80a1
commit 111d1ea18b
+1 -1
View File
@@ -483,7 +483,7 @@ def create_transcript_docx(text: str, filename: str):
# Add segments to pages, enforcing 29 lines per page
for seg in segments:
if line_count == 32:
if line_count == 30:
prepared_pages.append(current_page)
current_page = []
line_count = 0