Skip to content

Commit 5925b8c

Browse files
committed
fix fmt
1 parent 6d50b43 commit 5925b8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/templates/static.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ func Asset(name string) ([]byte, error) {
216216
func AssetNames() []string {
217217
realFS := Assets.(vfsgen۰FS)
218218
var results = make([]string, 0, len(realFS))
219-
for k, _ := range realFS {
219+
for k := range realFS {
220220
results = append(results, k[1:])
221221
}
222222
return results

0 commit comments

Comments
 (0)