Spaces:
Sleeping
Sleeping
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:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
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 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
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}")
|