Skip to content

Commit

Permalink
+cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Aug 1, 2024
1 parent 0bff5d2 commit 3624efa
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tabxlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,6 @@ def extension(filename: str) -> Optional[str]:
showheaders: List[str] = []
sortheaders: List[str] = []
for header in headers:
combines = ""
for selheader in header.split("|"):
if "@" in selheader:
selcol, rename = selheader.split("@", 1)
Expand All @@ -834,7 +833,6 @@ def extension(filename: str) -> Optional[str]:
renaming: Dict[str, str] = {}
selcols: List[str] = []
for selecheader in selected:
combines = ""
for selec in selecheader.split("|"):
if "@" in selec:
selcol, rename = selec.split("@", 1)
Expand Down

0 comments on commit 3624efa

Please sign in to comment.