Skip to content

Commit

Permalink
meta: ignore printf for now
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Dec 19, 2024
1 parent a093b3f commit 4caee01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/search/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (s *service[T]) Search(ctx context.Context) {
for _, entity := range s.entities {
if len(entity.Addresses) > 0 {
bs, _ := json.Marshal(entity)
fmt.Printf("\n\n %s \n", string(bs))
fmt.Printf("\n\n %s \n", string(bs)) //nolint:forbidigo
return
}
}
Expand Down

0 comments on commit 4caee01

Please sign in to comment.