Skip to content

Commit

Permalink
removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
Roi Lipman authored and Roi Lipman committed Jun 2, 2019
1 parent 6206ed6 commit b142612
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package redisgraph
import (
"testing"
"os"
"time"
"github.com/stretchr/testify/assert"
"github.com/gomodule/redigo/redis"
)
Expand Down
4 changes: 2 additions & 2 deletions query_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ func (qr *QueryResult) PrettyPrint() {
}
table.Render()

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

fmt.Fprintf(os.Stdout, "\n")
Expand Down

0 comments on commit b142612

Please sign in to comment.