Skip to content

Commit 0d4af10

Browse files
asorotskyintellij-monorepo-bot
authored andcommitted
cleanup
GitOrigin-RevId: 970cae8cabc3864bc8c5c4c98c766b5d1cb5b893
1 parent 4ec869d commit 0d4af10

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

python/src/com/jetbrains/python/sdk/uv/UvPackageManager.kt

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ internal class UvPackageManager(project: Project, sdk: Sdk, private val uv: UvLo
3333
return Result.failure(it)
3434
}
3535

36-
// FIXME: refactor command return value, it's not used
3736
return Result.success(Unit)
3837
}
3938

@@ -42,7 +41,6 @@ internal class UvPackageManager(project: Project, sdk: Sdk, private val uv: UvLo
4241
return Result.failure(it)
4342
}
4443

45-
// FIXME: refactor command return value, it's not used
4644
return Result.success(Unit)
4745
}
4846

@@ -58,12 +56,11 @@ internal class UvPackageManager(project: Project, sdk: Sdk, private val uv: UvLo
5856
return Result.failure(it)
5957
}
6058

61-
// FIXME: refactor command return value, it's not used
6259
return Result.success(Unit)
6360
}
6461

6562
override suspend fun reloadPackagesCommand(): Result<List<PythonPackage>> {
66-
// ignoring errors as handling outdated packages is pretty new option
63+
// ignoring errors as handling outdated packages is a pretty new option
6764
uv.listOutdatedPackages().onSuccess {
6865
outdatedPackages = it.associateBy { it.name }
6966
}

0 commit comments

Comments
 (0)