Skip to content

Commit

Permalink
fix: linter happiness
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrgm committed Jun 4, 2024
1 parent 72a4b03 commit 6b02c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/structuresmith/lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (d DiffResult) String() string {
for _, key := range keys {
status := fileMap[key]
prefix := getColorAndPrefix(status)
fmt.Fprintf(writer, "%s\t%s\n", prefix, key)
_, _ = fmt.Fprintf(writer, "%s\t%s\n", prefix, key)
}

if err := writer.Flush(); err != nil {
Expand Down

0 comments on commit 6b02c7a

Please sign in to comment.