diff --git a/modules/threads.py b/modules/threads.py index 34d30a7d..67da2120 100644 --- a/modules/threads.py +++ b/modules/threads.py @@ -232,15 +232,21 @@ def run(self): # store metadata wb.store_metadatas(metadata, share=matching_share) + # complementary analisis + self.sig_step.emit( + 0, + self.tr("Processing Excel: {}").format( + self.tr("complementary analisis...") + ), + ) + wb.launch_analisis() + # tunning full worksheet + self.sig_step.emit( + 0, self.tr("Processing Excel: {}").format(self.tr("tunning sheets...")) + ) wb.tunning_worksheets() - # special sheets - if self.opt_attributes: - wb.analisis_attributes() - else: - pass - # save workbook try: wb.save(self.output_xlsx_path)