chore: fix lint

This commit is contained in:
Jason Song 2022-12-06 16:53:46 +08:00
parent ab0a60e56a
commit eaf266a635
No known key found for this signature in database
GPG Key ID: 8402EEEE4511A8B5
2 changed files with 0 additions and 2 deletions

View File

@ -216,7 +216,6 @@ func GetRunByIndex(ctx context.Context, repoID, index int64) (*ActionRun, error)
return nil, err
} else if !has {
return nil, fmt.Errorf("run with index %d %d: %w", repoID, index, util.ErrNotExist)
}
return run, nil

View File

@ -217,7 +217,6 @@ func GetRunnerByID(ctx context.Context, id int64) (*ActionRunner, error) {
return nil, err
} else if !has {
return nil, fmt.Errorf("runner with id %d: %w", id, util.ErrNotExist)
}
return &runner, nil
}