chore(project): satisfy gci formatting and nilnil lint

This commit is contained in:
Oleks
2026-05-15 22:08:25 +03:00
parent 47f3e4137e
commit 6d09f611ea
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -276,7 +276,7 @@ func TestConnectedUIDsWithProjectAccess_NoConnections(t *testing.T) {
called := false
projectLookup = func(_ context.Context, _ int64) (*project_model.Project, error) {
called = true
return nil, nil
return &project_model.Project{}, nil
}
got := connectedUIDsWithProjectAccess(context.Background(), 42)
+1 -1
View File
@@ -57,7 +57,7 @@ func DeleteColumn(ctx context.Context, columnID int64) error {
// run the delete, and just skip per-issue events.
col, snapErr := project_model.GetColumn(ctx, columnID)
var (
projectID int64
projectID int64
movedIssues []int64
)
if snapErr == nil {