Small var declaration cleanup
diff --git a/text_formatter.go b/text_formatter.go
index 9114b3c..3fcd7f0 100644
--- a/text_formatter.go
+++ b/text_formatter.go
@@ -58,7 +58,7 @@
 
 func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
 	var b *bytes.Buffer
-	var keys []string = make([]string, 0, len(entry.Data))
+	keys := make([]string, 0, len(entry.Data))
 	for k := range entry.Data {
 		keys = append(keys, k)
 	}