Skip to content

Commit

Permalink
fix quality violation
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Apr 5, 2024
1 parent 6c16257 commit 2dac099
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ abstract class PythonPlugin implements Plugin<Project> {
File dir = project.file(path)
boolean exists = dir.exists()
task.delete path
task.onlyIf { exists}
task.onlyIf { exists }
task.doLast {
if (exists) {
task.logger.lifecycle('[python] Environment removed: {}', dir.absolutePath)
Expand Down

0 comments on commit 2dac099

Please sign in to comment.