From 35e69e685eff09ecfa5865b271d76806253f8e99 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Fri, 6 Mar 2026 12:19:20 +0100 Subject: [PATCH] fix: remove unused parameter in step method --- internal/command/migrate_apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/migrate_apply.go b/internal/command/migrate_apply.go index 11f6c1b5cd..973d7e76b4 100644 --- a/internal/command/migrate_apply.go +++ b/internal/command/migrate_apply.go @@ -131,7 +131,7 @@ func (c *MigrateApplyCommand) dryRun(view views.MigrateApply, id string, results return 0 } -func (c *MigrateApplyCommand) step(view views.MigrateApply, dir string, m migrate.Migration, results []migrate.SubMigrationResult) int { +func (c *MigrateApplyCommand) step(view views.MigrateApply, dir string, _ migrate.Migration, results []migrate.SubMigrationResult) int { totalChanges := 0 allFiles := map[string]bool{}