Skip to content

Commit 149c154

Browse files
committed
chore: appease linter
1 parent 137c335 commit 149c154

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func main() {
5757
}
5858

5959
fmt.Println("Entries:")
60-
for entry, _ := range pail.Entries(ctx, blocks, root) {
60+
for entry := range pail.Entries(ctx, blocks, root) {
6161
fmt.Printf("%s: %s\n", entry.Key, entry.Value)
6262
}
6363
}

example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func TestBasicExample(t *testing.T) {
4141
}
4242

4343
fmt.Println("Entries:")
44-
for entry, _ := range Entries(ctx, blocks, root) {
44+
for entry := range Entries(ctx, blocks, root) {
4545
fmt.Printf("%s: %s\n", entry.Key, entry.Value)
4646
}
4747
}

0 commit comments

Comments
 (0)