From 6e93d49a674ce35166b05f08276595aca48a7496 Mon Sep 17 00:00:00 2001 From: Chris Williams Date: Tue, 27 Feb 2018 16:15:26 -0800 Subject: [PATCH] Fix import ordering --- command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.go b/command.go index f65d4325..2f35efaa 100644 --- a/command.go +++ b/command.go @@ -23,9 +23,9 @@ import ( "os" "path/filepath" "sort" + "strings" flag "github.com/spf13/pflag" - "strings" ) var NotRunnable = errors.New("Command not runnable; need subcommand.")