1
0
mirror of https://github.com/pbnjay/grate.git synced 2026-05-16 17:16:40 +02:00

grater: Print types with -v

This commit is contained in:
Tamás Gulácsi
2021-02-25 08:38:47 +01:00
committed by Jeremy Jay
parent 023357a6b8
commit 9f1c3fa15f
+4 -2
View File
@@ -44,9 +44,11 @@ func main() {
}
for sheet.Next() {
//dtypes := sheet.Types()
if *flagDebug {
dtypes := sheet.Types()
fmt.Println(strings.Join(dtypes, "\t"))
}
row := sheet.Strings()
//fmt.Println(strings.Join(dtypes, "\t"))
fmt.Println(strings.Join(row, "\t"))
}
}