build/pyproject: Resolve import warning.

* guix/build/pyproject-build-system.scm: Hide the 'delete' symbol from
the imported (guix build utils) module to avoid a naming clash warning.

Change-Id: I48f97bf29b5282de1440c68d533c8300d4d11362
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Maxim Cournoyer 2025-06-17 18:30:07 +01:00 committed by Sharlatan Hellseher
parent 9cdcfdea91
commit 2682187a48
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -19,7 +19,7 @@
(define-module (guix build pyproject-build-system) (define-module (guix build pyproject-build-system)
#:use-module ((guix build python-build-system) #:prefix python:) #:use-module ((guix build python-build-system) #:prefix python:)
#:use-module (guix build utils) #:use-module ((guix build utils) #:hide (delete))
#:use-module (guix build json) #:use-module (guix build json)
#:use-module (guix build toml) #:use-module (guix build toml)
#:use-module (ice-9 match) #:use-module (ice-9 match)