Skip to content

Commit

Permalink
fix(nx-python): sonarcloud code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvieirasilva committed Nov 10, 2023
1 parent 7cc2eaf commit e4a76c5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/nx-python/src/executors/ruff-check/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { ExecutorContext } from '@nx/devkit';
import chalk from 'chalk';
import { Logger } from '../utils/logger';
import { RuffCheckExecutorSchema } from './schema';
import path from 'path';
import {
POETRY_EXECUTABLE,
activateVenv,
Expand Down Expand Up @@ -31,7 +30,7 @@ export default async function executor(
.concat(options.lintFilePatterns)
.concat(options.__unparsed__);

await runCheck(commandArgs, projectConfig.root);
runCheck(commandArgs, projectConfig.root);

return {
success: true,
Expand Down

0 comments on commit e4a76c5

Please sign in to comment.