Skip to content

Commit

Permalink
feat(core): fix linting issues
Browse files Browse the repository at this point in the history
closes #234
  • Loading branch information
ostridm committed Mar 28, 2024
1 parent 2d17f70 commit 4d6dbdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/importers/GraphQLImporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class GraphQLImporter extends BaseImporter<ImporterType.GRAPHQL> {
return `${url.hostname}-${checkSum}`.toLowerCase();
}

private async normalize(doc: GraphQL.Document){
private async normalize(doc: GraphQL.Document) {
doc = await this.tryConvertSDL(doc);

return this.normalizer.normalize(doc);
Expand Down

0 comments on commit 4d6dbdc

Please sign in to comment.