From dde48a57c949af6925b8c67aa904107ddbfabe60 Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Sat, 7 Dec 2013 07:10:04 -0800 Subject: [PATCH] Standardize import statements --- flag.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/flag.go b/flag.go index 8f8ba68..38c8c1c 100644 --- a/flag.go +++ b/flag.go @@ -1,9 +1,11 @@ package cli -import "fmt" -import "flag" -import "strconv" -import "strings" +import ( + "flag" + "fmt" + "strconv" + "strings" +) // Flag is a common interface related to parsing flags in cli. // For more advanced flag parsing techniques, it is recomended that