Skip to content

Commit

Permalink
drop export in parseEvent append fn
Browse files Browse the repository at this point in the history
  • Loading branch information
rajku-dev committed Jan 17, 2025
1 parent 6230a67 commit 686d850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper/src/github-scraper/parseEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function getDefaultBranch(owner: string, repo: string) {
}
return defaultBranches[repo];
}
export function appendEvent(user: string, event: Activity) {
function appendEvent(user: string, event: Activity) {
if (isBlacklisted(user)) {
return;
}
Expand Down

0 comments on commit 686d850

Please sign in to comment.