From b6d0901dfc5c2e3364e3c05d18df2431bf815bb8 Mon Sep 17 00:00:00 2001 From: Sakari Ikonen Date: Mon, 15 Jan 2024 12:24:02 +0200 Subject: [PATCH] cleanup print from pypi bootstrap --- metaflow/plugins/pypi/bootstrap.py | 1 - 1 file changed, 1 deletion(-) diff --git a/metaflow/plugins/pypi/bootstrap.py b/metaflow/plugins/pypi/bootstrap.py index ba676da5301..a26a07ac578 100644 --- a/metaflow/plugins/pypi/bootstrap.py +++ b/metaflow/plugins/pypi/bootstrap.py @@ -114,7 +114,6 @@ [package["path"] for package in env["pypi"]] ) as results: for key, tmpfile, _ in results: - print(key) dest = os.path.join(pypi_pkgs_dir, os.path.basename(key)) os.makedirs(os.path.dirname(dest), exist_ok=True) shutil.move(tmpfile, dest)