aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--reader/reader.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/reader/reader.go b/reader/reader.go
index d81108b..cda8350 100644
--- a/reader/reader.go
+++ b/reader/reader.go
@@ -12,8 +12,10 @@ import (
"github.com/tealeg/xlsx"
)
-const maxCols = 16384
-const maxAlphabets = (maxCols / 26) - 1
+const (
+ maxCols = 16384
+ maxAlphabets = (maxCols / 26) - 1
+)
//DatamapLine - a line from the datamap.
type DatamapLine struct {