Skip to content

Commit 88e6b03

Browse files
authored
Merge pull request #18 from catawiki/ai-fix-gcs-example
Fix writer error on writing bytes array
2 parents c9a342a + 8bba654 commit 88e6b03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/gcs_write.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func main() {
5353
}
5454

5555
data2 := []interface{}{
56-
[]byte("Student Name"),
56+
"Student Name",
5757
int32(20 + i%5),
5858
int64(i),
5959
float32(50.0 + float32(i)*0.1),

0 commit comments

Comments
 (0)