Skip to content

Commit

Permalink
Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
damanMSFT committed Jan 2, 2025
1 parent 64d127f commit 243fcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func GetFromStatuses(statuses map[string]*string) (status *common.Status) {
}
if val, ok := statuses["UploadStatus"]; ok {
ps := new(common.UploadStatus)
proto.UnmarshalText(*val, ps)
proto.UnmarshalText(*val, ps) //nolint:golint,errcheck
status.UploadStatus = ps
}

Expand Down

0 comments on commit 243fcb5

Please sign in to comment.