From d9b76b97c20d9c0dc018d31ececf52f5d11be09f Mon Sep 17 00:00:00 2001 From: konsti Date: Fri, 13 Jun 2025 20:04:13 +0200 Subject: [PATCH] Remove unreachable pub function (#14032) Not sure how this landed on main, but rustc complained. --- crates/uv-python/src/discovery.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-python/src/discovery.rs b/crates/uv-python/src/discovery.rs index 0be8d17d1..3858fd525 100644 --- a/crates/uv-python/src/discovery.rs +++ b/crates/uv-python/src/discovery.rs @@ -1185,7 +1185,7 @@ pub(crate) fn find_python_installation( /// /// See [`find_python_installation`] for more details on installation discovery. #[instrument(skip_all, fields(request))] -pub fn find_best_python_installation( +pub(crate) fn find_best_python_installation( request: &PythonRequest, environments: EnvironmentPreference, preference: PythonPreference,