cjber commited on
Commit
9df9069
·
1 Parent(s): 3a04966

fix: dont use covers docx

Browse files
data/covers/Overview_of_Public_Submissions.docx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9e967671cb3c7ea93b47ea9bd6c270b2c1d7a8abbe752509d042910f250df020
3
- size 521883
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d25f4fe1da660ebcb4655a27b9a8bca9a1dab73962900f858309a683b8fbc58d
3
+ size 1595802
data/covers/Summaries_of_Public_Submissions.docx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a720f765ecb0c77169458b6731aaa967fd192a43a3a6b30f25fd78c26f6af511
3
- size 522390
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6bc5191e10d13f15337f649b829c6f210bdda541bcde3ad4fe05d63f099a5b0
3
+ size 1595689
planning_ai/documents/document.py CHANGED
@@ -477,15 +477,15 @@ header-includes: |
477
  "--reference-doc=data/covers/reference.docx",
478
  ]
479
  subprocess.run(command, check=True, capture_output=True)
480
- command = [
481
- "pandoc",
482
- "data/covers/Overview_of_Public_Submissions.docx",
483
- f"{out_file}.docx",
484
- "-o",
485
- f"{out_file}.docx",
486
- "--reference-doc=data/covers/reference.docx",
487
- ]
488
- subprocess.run(command, check=True, capture_output=True)
489
  except subprocess.CalledProcessError as e:
490
  logging.error(f"Error during Overview_of_Public_Submissions render: {e}")
491
 
@@ -572,14 +572,14 @@ header-includes: |
572
  "--reference-doc=data/covers/reference.docx",
573
  ]
574
  subprocess.run(command, check=True, capture_output=True)
575
- command = [
576
- "pandoc",
577
- "data/covers/Summaries_of_Public_Submissions.docx",
578
- f"{out_file}.docx",
579
- "-o",
580
- f"{out_file}.docx",
581
- "--reference-doc=data/covers/reference.docx",
582
- ]
583
- subprocess.run(command, check=True, capture_output=True)
584
  except subprocess.CalledProcessError as e:
585
  logging.error(f"Error during render: {e}")
 
477
  "--reference-doc=data/covers/reference.docx",
478
  ]
479
  subprocess.run(command, check=True, capture_output=True)
480
+ # command = [
481
+ # "pandoc",
482
+ # "data/covers/Overview_of_Public_Submissions.docx",
483
+ # f"{out_file}.docx",
484
+ # "-o",
485
+ # f"{out_file}.docx",
486
+ # "--reference-doc=data/covers/reference.docx",
487
+ # ]
488
+ # subprocess.run(command, check=True, capture_output=True)
489
  except subprocess.CalledProcessError as e:
490
  logging.error(f"Error during Overview_of_Public_Submissions render: {e}")
491
 
 
572
  "--reference-doc=data/covers/reference.docx",
573
  ]
574
  subprocess.run(command, check=True, capture_output=True)
575
+ # command = [
576
+ # "pandoc",
577
+ # "data/covers/Summaries_of_Public_Submissions.docx",
578
+ # f"{out_file}.docx",
579
+ # "-o",
580
+ # f"{out_file}.docx",
581
+ # "--reference-doc=data/covers/reference.docx",
582
+ # ]
583
+ # subprocess.run(command, check=True, capture_output=True)
584
  except subprocess.CalledProcessError as e:
585
  logging.error(f"Error during render: {e}")