Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
meddlin committed Feb 26, 2024
1 parent 85bbe99 commit b78179b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@
import argparse, textwrap
from openpyxl import Workbook
from openpyxl.styles import Font
from openpyxl.worksheet.filters import (
FilterColumn,
CustomFilter,
CustomFilters,
DateGroupItem,
Filters,
)
from openpyxl.worksheet.filters import FilterColumn

import utility

Expand Down Expand Up @@ -115,7 +109,6 @@ def create_filtered_workbook(workbook, worksheet, abridged: dict[str, str], filt
def create_workbooks(full: dict[str, str], abridged: dict[str, str], filter_columns: str, sheet_name: str, output: str):
"""Create workbooks and control what changes are made to them. (This is where the magic happens)"""

# filter_columns = ['Posting Date', 'Amount', 'Description', 'Transaction Category', 'Extended Description']
filter_columns = utility.format_filter_cols(filter_columns)

wb = Workbook()
Expand Down

0 comments on commit b78179b

Please sign in to comment.