fix(action): remove unused fmt import

Fixes build failure: action/integration_test.go uses only context and exec,
not fmt. Import was unused and causing build failure.
This commit is contained in:
Story Crater Bot
2026-08-22 01:01:32 -07:00
parent 6f89eadbeb
commit 79630e5d3c
-1
View File
@@ -2,7 +2,6 @@ package action
import (
"context"
"fmt"
"os/exec"
)