From 5bcfaab61cd2cc7f68034edb24c48003d14994cf Mon Sep 17 00:00:00 2001 From: ianpye Date: Wed, 24 Jan 2024 17:19:11 +0800 Subject: [PATCH] Bug fix for not working --pypi_to_conda_lookup_file flag --- conda_lock/lookup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conda_lock/lookup.py b/conda_lock/lookup.py index a56e1be35..943363f0f 100644 --- a/conda_lock/lookup.py +++ b/conda_lock/lookup.py @@ -24,8 +24,6 @@ def mapping_url(self) -> str: @mapping_url.setter def mapping_url(self, value: str) -> None: - del self.pypi_lookup - del self.conda_lookup self._mapping_url = value @cached_property