Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aduffeck committed Jul 28, 2023
1 parent 5076031 commit e0f456c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/utils/decomposedfs/migrator/migrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func registerMigration(name string, migration migration) {
func allMigrations() []string {
ms := []string{}

for k, _ := range migrations {
for k := range migrations {
ms = append(ms, k)
}

Expand Down

0 comments on commit e0f456c

Please sign in to comment.