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 Jan 11, 2024
1 parent 8f37080 commit 9c039ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/safe-ds-vscode/src/extension/pythonServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ export const executePipeline = async function (
path.basename(pipelineDocument.uri.fsPath, '.sdstest'),
);
} else {
mainModuleName = services.generation.PythonGenerator.sanitizeModuleNameForPython(path.basename(pipelineDocument.uri.fsPath));
mainModuleName = services.generation.PythonGenerator.sanitizeModuleNameForPython(
path.basename(pipelineDocument.uri.fsPath),
);
}
// Code generation
const rootGenerationDir = path.parse(pipelineDocument.uri.fsPath).dir;
Expand Down

0 comments on commit 9c039ab

Please sign in to comment.