aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKablersalat <crt@adastra7.net>2025-02-10 07:16:48 +0100
committerKablersalat <crt@adastra7.net>2025-02-10 07:16:48 +0100
commit0bb596378f8b3e38f871d3ab1acfb97b7f752856 (patch)
tree3f3e5e295f890840bd1377476b295253f6dcc426
parent9303bce546eab075e532dfc3230f618f28f8676f (diff)
more typos
-rw-r--r--rdb-to-sheets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdb-to-sheets.py b/rdb-to-sheets.py
index e3c365b..d98da5f 100644
--- a/rdb-to-sheets.py
+++ b/rdb-to-sheets.py
@@ -159,7 +159,7 @@ with pd.ExcelWriter(output_path) as writer:
}.items():
df = pd.DataFrame(data)
if "TNs" in df.columns:
- df = df.drop(columns=["TNs"]) # Remove TNs column if present for some reason
+ df = df.drop(columns=["TNs"]) # Remove TNs column if present for some reason doesnt work with MS Excel doe
df.to_excel(writer, sheet_name=sheet_name, index=False)
print("Processing complete. Output saved to", output_path)