From 58753da6f9403cb2d380b742146b28ccdbaefc66 Mon Sep 17 00:00:00 2001 From: lj-wsdj <1134294381@qq.com> Date: Fri, 17 May 2024 13:32:52 +0800 Subject: [PATCH] fix --- export/cell.go | 1 - 1 file changed, 1 deletion(-) diff --git a/export/cell.go b/export/cell.go index f90ce54..a85d494 100644 --- a/export/cell.go +++ b/export/cell.go @@ -27,7 +27,6 @@ type CellLocation struct { func (e *Exporter) SetCell(sheet string, cell Cell) { start_col, end_col := e.CaculateCell(cell.Location, cell.Rowspan, cell.Colspan) - fmt.Println(sheet, start_col, end_col, cell.Value) if start_col != end_col { e.xlsx.MergeCell(sheet, start_col, end_col) }