Skip to content

Commit

Permalink
Remove redundant fmt call.
Browse files Browse the repository at this point in the history
  • Loading branch information
amigus committed Dec 20, 2024
1 parent 9a5a7cf commit 1a6e8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host_dir.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func createReservationFile(input reservation, c *gin.Context, hostDir string, ov
return
}

content := fmt.Sprintf("%s", mac.ToColonDelimitedString())
content := mac.ToColonDelimitedString()

if len(input.Tags) > 0 {
content += "," + strings.Join(prefixTags(input.Tags), ",")
Expand Down

0 comments on commit 1a6e8bc

Please sign in to comment.