Commit cde8014a authored by Jonas Schüppen's avatar Jonas Schüppen
Browse files

Changed order of updates to set NO/EX after EQ

parent a09a45d3
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3019,7 +3019,6 @@ def update_format_styles_cli():
        ("update_table_captions", update_table_captions),
        ("update_abbreviations", update_abbreviations),
        ("update_table_rows", update_table_rows),
        ("update_notes", update_notes),
        ("update_references", update_references),
        ("update_lists", update_lists),
        ("repair_invalid_numbering_references", repair_invalid_numbering_references),
@@ -3029,7 +3028,8 @@ def update_format_styles_cli():
        ("update_source_code_style", update_source_code_style),
        ("add_break_after_code_blocks_and_tables", add_break_after_code_blocks_and_tables),
        ("update_equation_style", update_equation_style),
        ("correct_quotes_docx", correct_quotes_docx)
        ("correct_quotes_docx", correct_quotes_docx),
        ("update_notes", update_notes)
    ]

    for step_name, step_func in format_style_steps: