From 23ea28c82b351a779f280a1f86d7135d3c3c2997 Mon Sep 17 00:00:00 2001 From: Guido Draheim Date: Wed, 31 Jul 2024 11:30:10 +0200 Subject: [PATCH] same-bytes --- tabxlsx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tabxlsx.py b/tabxlsx.py index fc4f063..c753cb7 100755 --- a/tabxlsx.py +++ b/tabxlsx.py @@ -15,7 +15,8 @@ import os import re -# Actually, we implement what we need for tabtoxlsx +# The functions in this script mimic those of openpyxl - we only implement what we need for tabtoxlsx +# (actually, we make an export with openpyxl and then we adapt the code here to generate the same bytes) # from openpyxl import Workbook, load_workbook # from openpyxl.worksheet.worksheet import Worksheet # from openpyxl.styles.cell_style import CellStyle as Style