diff options
author | xuri <xuri.me@gmail.com> | 2021-09-17 00:15:51 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-09-17 00:15:51 +0800 |
commit | 2add938798cdd1456616869298319528b0c76913 (patch) | |
tree | 6df02447bf25779e5bd6099ade16438568c9640e /cell.go | |
parent | 1ba3690764e90aa6f7bcb3cb1e095475d40e3d91 (diff) |
- new formula functions: DATEVALUE, ref #65
- fix ineffectual variable assignments
- timeout in go test
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |