fix(tasks): apply Black formatting to extract_metadata_with_gpt.py and rotate_pdf_pages.py

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-08 18:21:45 +00:00
parent 7ea933c9e6
commit bb155501b4
2 changed files with 5 additions and 6 deletions
+1 -2
View File
@@ -104,8 +104,7 @@ def rotate_pdf_pages(filename: str, extracted_text: str, rotation_data=None, fil
# PyPDF2 uses clockwise rotation in 90-degree increments
page.rotate(rotation_angle)
logger.info(
f"Page {page_idx+1} rotated by {rotation_angle}° "
f"(from detected {detected_angle}°)"
f"Page {page_idx+1} rotated by {rotation_angle}° " f"(from detected {detected_angle}°)"
)
applied_rotations[str(page_idx)] = rotation_angle
else: