Code clean

This commit is contained in:
Timothyxxx
2024-02-23 15:40:26 +08:00
parent 1610358e08
commit 7427b39d1d
2 changed files with 121 additions and 233 deletions

View File

@@ -284,18 +284,6 @@ def compare_contains_image(docx_file1, docx_file2):
return 1
# file1 = 'path/to/file1.docx'
# file2 = 'path/to/file2.docx'
# print(are_docx_files_same(file1, file2))
# Replace 'your_document.docx' with the path to your document
# result = contains_page_break('your_document.docx')
# print(result)
# config_path = "/home/[username]/.config/libreoffice/4/user/registrymodifications.xcu"
# print(find_default_font("Ani", config_path))
def evaluate_colored_words_in_tables(file_path1, file_path2, **kwargs):
if not compare_docx_files(file_path1, file_path2):
return 0
@@ -538,12 +526,3 @@ def compare_highlighted_text(file1, file2):
return 1
else:
return 0
if __name__ == '__main__':
print(
compare_docx_files(
r"C:\Users\tianbaox\Desktop\DesktopEnv\cache\88fe4b2d-3040-4c70-9a70-546a47764b48\CCCH9003_Tutorial_guidelines.docx",
r"C:\Users\tianbaox\Desktop\DesktopEnv\cache\88fe4b2d-3040-4c70-9a70-546a47764b48\CCCH9003_Tutorial_guidelines_Gold.docx",
ignore_blanks=False
)
)