From 0f52b96b7a90be5b7d2abc80735c25ea611ad951 Mon Sep 17 00:00:00 2001 From: mattmoor-sockpuppet <32418083+mattmoor-sockpuppet@users.noreply.github.com> Date: Mon, 7 Jan 2019 09:16:41 -0800 Subject: [PATCH] golang format tools (#711) Produced via: `gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))` `goimports -w $(find -name '*.go' | grep -v vendor)` --- eventing/sources/generator/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventing/sources/generator/main.go b/eventing/sources/generator/main.go index ab4539297..10ec3abad 100644 --- a/eventing/sources/generator/main.go +++ b/eventing/sources/generator/main.go @@ -18,12 +18,13 @@ package main import ( "flag" - "gopkg.in/yaml.v2" "io/ioutil" "log" "os" "sort" "text/template" + + yaml "gopkg.in/yaml.v2" ) var (