Skip to content

Commit

Permalink
add types
Browse files Browse the repository at this point in the history
  • Loading branch information
mmgoodnow committed Dec 29, 2023
1 parent 31f9b0c commit b174754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ async function assessCandidates(
candidates: Candidate[],
searchee: Searchee,
hashesToExclude: string[]
) {
const assessments = [];
): Promise<AssessmentWithTracker[]> {
const assessments: AssessmentWithTracker[] = [];
for (const result of candidates) {
const assessment = await assessCandidate(
result,
Expand Down

0 comments on commit b174754

Please sign in to comment.