fix(python): usage of obsolete alias letf

Amend: 04b76fd0ce
This commit is contained in:
pancho horrillo 2022-04-18 18:14:16 +02:00 committed by GitHub
parent b688df5c3e
commit f51a2cdd3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -325,7 +325,7 @@
(defadvice! +python--inhibit-pip-requirements-fetch-packages-a (fn &rest args) (defadvice! +python--inhibit-pip-requirements-fetch-packages-a (fn &rest args)
"No-op `pip-requirements-fetch-packages', which can be expensive." "No-op `pip-requirements-fetch-packages', which can be expensive."
:around #'pip-requirements-mode :around #'pip-requirements-mode
(letf ((#'pip-requirements-fetch-packages #'ignore)) (letf! ((#'pip-requirements-fetch-packages #'ignore))
(apply fn args)))) (apply fn args))))