Skip to content

Commit

Permalink
Remove unnecessary conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Nov 18, 2021
1 parent 3dfbbaa commit 298277d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cmd/mock-swift-dispersion-report/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ func main() {
dumpJSONFlag := kingpin.Flag("dump-json", "Dump dispersion report in json format.").Short('j').Required().Bool()
kingpin.Parse()
if *dumpJSONFlag {
os.Stdout.Write([]byte(reportData))
os.Stdout.Write(reportData)
}
}

0 comments on commit 298277d

Please sign in to comment.