summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-09-17 00:15:51 +0800
committerxuri <xuri.me@gmail.com>2021-09-17 00:15:51 +0800
commit2add938798cdd1456616869298319528b0c76913 (patch)
tree6df02447bf25779e5bd6099ade16438568c9640e /cell.go
parent1ba3690764e90aa6f7bcb3cb1e095475d40e3d91 (diff)
- new formula functions: DATEVALUE, ref #65
- fix ineffectual variable assignments - timeout in go test
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go2
1 files changed, 1 insertions, 1 deletions
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