Skip to content

Commit b142612

Browse files
Roi LipmanRoi Lipman
authored andcommitted
removed unused import
1 parent 6206ed6 commit b142612

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

client_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package redisgraph
33
import (
44
"testing"
55
"os"
6-
"time"
76
"github.com/stretchr/testify/assert"
87
"github.com/gomodule/redigo/redis"
98
)

query_result.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ func (qr *QueryResult) PrettyPrint() {
249249
}
250250
table.Render()
251251

252-
for _, stat := range qr.statistics {
253-
fmt.Fprintf(os.Stdout, "\n%s", stat)
252+
for k, v := range qr.statistics {
253+
fmt.Fprintf(os.Stdout, "\n%s %f", k, v)
254254
}
255255

256256
fmt.Fprintf(os.Stdout, "\n")

0 commit comments

Comments
 (0)