Skip to content

Commit

Permalink
remove unused nolint directive for gomnd linter
Browse files Browse the repository at this point in the history
  • Loading branch information
11Petrov committed Feb 21, 2024
1 parent cb708f8 commit d134a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/topic/cdc-fill-and-read/tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ VALUES
`, prefix, tableName)
for {
id := uint64(rand.Intn(maxID)) //nolint:gosec
val := "val-" + strconv.Itoa(rand.Intn(10)) //nolint:gosec,gomnd
val := "val-" + strconv.Itoa(rand.Intn(10)) //nolint:gosec
params := table.NewQueryParameters(
table.ValueParam("$id", types.Uint64Value(id)),
table.ValueParam("$value", types.UTF8Value(val)),
Expand Down

0 comments on commit d134a39

Please sign in to comment.