From 6fed084bb6eae65d5d29a33f31f22008b9277e1d Mon Sep 17 00:00:00 2001 From: jaimergp Date: Mon, 6 Jan 2025 15:36:35 +0100 Subject: [PATCH] remove `log` at the bottom --- conda_build/utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/conda_build/utils.py b/conda_build/utils.py index 8cad9ca006..c28727e96b 100644 --- a/conda_build/utils.py +++ b/conda_build/utils.py @@ -2237,6 +2237,3 @@ def is_conda_pkg(pkg_path: str) -> bool: def package_record_to_requirement(prec: PackageRecord) -> str: return f"{prec.name} {prec.version} {prec.build}" - - -log = get_logger(__name__)