Skip to content

Commit

Permalink
Merge pull request #140 from nicolasbock/cleanup
Browse files Browse the repository at this point in the history
Clean up unused linter comment
  • Loading branch information
nicolasbock committed May 7, 2024
2 parents e615c86 + e249d30 commit b4706d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/common/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func RunOnInterval(ctx context.Context, lock *sync.Mutex, d time.Duration, f func(ctx *context.Context, interval time.Duration)) {
ticker := time.Tick(d) // nolint:staticcheck
ticker := time.Tick(d)
for {
select {
case <-ctx.Done():
Expand Down

0 comments on commit b4706d9

Please sign in to comment.