Skip to content

Commit 4ec16cd

Browse files
committed
linting complained about an unhandled Println error
1 parent 7d08255 commit 4ec16cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/runtimeconfig/deploymententry_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func ExampleDeploymentValues() {
4444
if err != nil {
4545
panic(err)
4646
}
47-
fmt.Println(val)
47+
_, _ = fmt.Println(val)
4848
// Output: hello world
4949
}
5050

0 commit comments

Comments
 (0)