diff --git a/scripts/excel_dwh_filler/excel_sheets_filler.py b/scripts/excel_dwh_filler/excel_sheets_filler.py index 1002173..a57d6fa 100644 --- a/scripts/excel_dwh_filler/excel_sheets_filler.py +++ b/scripts/excel_dwh_filler/excel_sheets_filler.py @@ -93,7 +93,6 @@ def _save_excel_sheet( if __name__ == "__main__": - # parse arguments from command line: parser = argparse.ArgumentParser() parser.add_argument( "--db_url", diff --git a/scripts/excel_dwh_filler/script_components/tab_processors/basic.py b/scripts/excel_dwh_filler/script_components/tab_processors/basic.py index 36211cf..40243ae 100644 --- a/scripts/excel_dwh_filler/script_components/tab_processors/basic.py +++ b/scripts/excel_dwh_filler/script_components/tab_processors/basic.py @@ -107,7 +107,6 @@ def _fill_excel_rows_with_values(self) -> None: excel_row_index += 1 def clear_data_from_tab(self) -> None: - # clear the data, but keep the formatting: for row in self.tab.iter_rows(min_row=self.FIRST_ROW_TO_FILL): for cell in row: cell.value = None