Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Sep 26, 2023
1 parent 30464c9 commit 7729384
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/language/grammar/safe-ds-value-converter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {convertString, CstNode, DefaultValueConverter, GrammarAST, ValueType} from 'langium';
import { convertString, CstNode, DefaultValueConverter, GrammarAST, ValueType } from 'langium';

export class SafeDsValueConverter extends DefaultValueConverter {
protected override runConverter(rule: GrammarAST.AbstractRule, input: string, cstNode: CstNode): ValueType {
Expand Down
2 changes: 1 addition & 1 deletion src/language/safe-ds-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { SafeDsFormatter } from './formatting/safe-ds-formatter.js';
import { SafeDsWorkspaceManager } from './builtins/safe-ds-workspace-manager.js';
import { SafeDsScopeComputation } from './scoping/safe-ds-scope-computation.js';
import { SafeDsScopeProvider } from './scoping/safe-ds-scope-provider.js';
import {SafeDsValueConverter} from "./grammar/safe-ds-value-converter.js";
import { SafeDsValueConverter } from './grammar/safe-ds-value-converter.js';

/**
* Declaration of custom services - add your own service classes here.
Expand Down
2 changes: 1 addition & 1 deletion tests/language/partialEvaluation/creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const createPartialEvaluationTest = async (
uris,
equivalenceClassAssertions: [...groupIdToLocations.values()].map((locations) => ({ locations })),
serializationAssertions,
undefinedAssertions
undefinedAssertions,
};
};

Expand Down

0 comments on commit 7729384

Please sign in to comment.