Skip to content

Commit 62ab6b1

Browse files
committed
Address code consistency check failure on PR
1 parent 4ad683c commit 62ab6b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/command/meta_backend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1840,7 +1840,7 @@ func isProviderReattached(provider addrs.Provider) (bool, error) {
18401840
if err != nil {
18411841
return false, fmt.Errorf("Invalid format for TF_REATTACH_PROVIDERS: %w", err)
18421842
}
1843-
for p, _ := range m {
1843+
for p := range m {
18441844
a, diags := addrs.ParseProviderSourceString(p)
18451845
if diags.HasErrors() {
18461846
return false, fmt.Errorf("Error parsing %q as a provider address: %w", a, diags.Err())

0 commit comments

Comments
 (0)