Skip to content

Commit

Permalink
Last round of lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
guyca committed Jan 6, 2025
1 parent 578aa7e commit 7c42d24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class DependencyResolver {
private getDependenciesFromSubgraphs(clazz: ClassFile): string[] {
return this.subgraphResolver
.resolve(clazz)
.flatMap((clazz) => this.getGraphDependencies(clazz));
.flatMap($clazz => this.getGraphDependencies($clazz));
}

private getGraphDependencies({ clazz }: ClassFile) {
Expand Down

0 comments on commit 7c42d24

Please sign in to comment.