Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
apply complementary analisis after export done #78
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Sep 4, 2019
1 parent 0614a2f commit bb44eda
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions modules/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bb44eda

Please sign in to comment.