소스 검색

more typos

Kablersalat 9 달 전
부모
커밋
0bb596378f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rdb-to-sheets.py

+ 1 - 1
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)