From 2add938798cdd1456616869298319528b0c76913 Mon Sep 17 00:00:00 2001 From: xuri Date: Fri, 17 Sep 2021 00:15:51 +0800 Subject: - new formula functions: DATEVALUE, ref #65 - fix ineffectual variable assignments - timeout in go test --- cell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cell.go') diff --git a/cell.go b/cell.go index 2d49a5e..902f5b7 100644 --- a/cell.go +++ b/cell.go @@ -82,7 +82,7 @@ func (f *File) GetCellType(sheet, axis string) (CellType, error) { var ( err error cellTypeStr string - cellType CellType = CellTypeUnset + cellType CellType ) if cellTypeStr, err = f.getCellStringFunc(sheet, axis, func(x *xlsxWorksheet, c *xlsxC) (string, bool, error) { return c.T, true, nil -- cgit v1.2.1