diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-08 16:58:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 16:58:50 +0100 |
commit | c6ad42a176c943aa96a8c053682196cd38fd6a1a (patch) | |
tree | ef71ccbda94462f1bee19e8153c361751813df8a /libpod/image | |
parent | 27caffbb240725255485deaaecd548663adbf1fd (diff) | |
parent | bcf5753276fcb7280924b46c7c49ef3e2388c9b0 (diff) | |
download | podman-c6ad42a176c943aa96a8c053682196cd38fd6a1a.tar.gz podman-c6ad42a176c943aa96a8c053682196cd38fd6a1a.tar.bz2 podman-c6ad42a176c943aa96a8c053682196cd38fd6a1a.zip |
Merge pull request #4816 from vrothberg/lint
Fix golint errors
Diffstat (limited to 'libpod/image')
-rw-r--r-- | libpod/image/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/image/config.go b/libpod/image/config.go index 40e7fd496..bb84175a3 100644 --- a/libpod/image/config.go +++ b/libpod/image/config.go @@ -2,7 +2,7 @@ package image // ImageDeleteResponse is the response for removing an image from storage and containers // what was untagged vs actually removed -type ImageDeleteResponse struct { +type ImageDeleteResponse struct { //nolint Untagged []string `json:"untagged"` Deleted string `json:"deleted"` } |