From c0750e1e52cfbf0fe0303e3abb7d97d980102fda Mon Sep 17 00:00:00 2001 From: Bas Schoenmaeckers Date: Thu, 28 Nov 2024 15:04:34 +0100 Subject: [PATCH] Use `PypiDatasource.defaultURL` --- lib/modules/manager/pep621/processors/uv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/manager/pep621/processors/uv.ts b/lib/modules/manager/pep621/processors/uv.ts index 982a82dfa7b398..87f8024e46c5fc 100644 --- a/lib/modules/manager/pep621/processors/uv.ts +++ b/lib/modules/manager/pep621/processors/uv.ts @@ -103,7 +103,7 @@ export class UvProcessor implements PyProjectProcessor { // If there are implicit indexes, check them first and fall back // to the default. dep.registryUrls = implicitIndexUrls.concat( - dep.registryUrls ?? new PypiDatasource().defaultRegistryUrls, + dep.registryUrls ?? PypiDatasource.defaultURL, ); } }