From 7849b28532ba27496414ec9945a0364842132467 Mon Sep 17 00:00:00 2001 From: Erin Call Date: Thu, 19 Dec 2019 11:11:50 -0800 Subject: [PATCH] Format the Delete struct less weirdly [#4] I thought it was a golang style convention to put a blank line between public and private struct fields, but apparently I imagined that. --- internal/run/delete.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/run/delete.go b/internal/run/delete.go index 7ddc495..d11c2a6 100644 --- a/internal/run/delete.go +++ b/internal/run/delete.go @@ -8,8 +8,7 @@ import ( type Delete struct { Release string DryRun bool - - cmd cmd + cmd cmd } // Execute executes the `helm upgrade` command.