From 36b7990d6ba1036823abf7a01ec8cf74509d4910 Mon Sep 17 00:00:00 2001 From: xuri Date: Mon, 15 Feb 2021 00:09:35 +0800 Subject: lint issue fixed and new formula function: ATAN, AVERAGE, AVERAGEA, CONCAT, CONCATENATE, COUNT, COUNTBLANK, MAX --- sheet_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sheet_test.go') diff --git a/sheet_test.go b/sheet_test.go index f218da7..a721472 100644 --- a/sheet_test.go +++ b/sheet_test.go @@ -409,7 +409,7 @@ func newSheetWithSet() { file := NewFile() file.NewSheet("sheet1") for i := 0; i < 1000; i++ { - file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i) + _ = file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i) } file = nil } @@ -426,7 +426,7 @@ func newSheetWithSave() { file := NewFile() file.NewSheet("sheet1") for i := 0; i < 1000; i++ { - file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i) + _ = file.SetCellInt("sheet1", "A"+strconv.Itoa(i+1), i) } - file.Save() + _ = file.Save() } -- cgit v1.2.1