From bd4c1622643972a83508888ad07ee5a9f9866d81 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 8 Nov 2021 20:26:00 +0100 Subject: [PATCH] Remove debug print statement --- superinvoke/collections/tool.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/superinvoke/collections/tool.py b/superinvoke/collections/tool.py index 74db189..27cabad 100644 --- a/superinvoke/collections/tool.py +++ b/superinvoke/collections/tool.py @@ -167,8 +167,6 @@ def install(context, include, exclude="", yes=False): ) def remove(context, include, exclude="", yes=False): """Remove available tools.""" - print("remove tools") - from ..main import __TOOLS__ include = {tool for tool in include.split(",") if tool and tool != ","}