From 7bfda3b5a58be8ef6cf2f8f7ed2cacfb1e1c8b06 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Sat, 4 Nov 2023 11:11:32 -0500 Subject: [PATCH] remove debugging print --- circup/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/circup/__init__.py b/circup/__init__.py index a6999b2..63fa808 100644 --- a/circup/__init__.py +++ b/circup/__init__.py @@ -145,7 +145,6 @@ class Bundle: library_name, "requirements.txt" if not toml_file else "pyproject.toml", ) - print(f"found_file: {found_file}") if os.path.isfile(found_file): with open(found_file, "r", encoding="utf-8") as read_this: return read_this.read()