From 7a041b197904f7c04c5f8b3fb86daa73c3d26441 Mon Sep 17 00:00:00 2001 From: Adisun Wheelock <32372583+adisunw@users.noreply.github.com> Date: Wed, 15 Jan 2020 18:57:20 -0500 Subject: [PATCH] Remove debug print statement Unusable :^) --- gestalt/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gestalt/__init__.py b/gestalt/__init__.py index d6a8ad5..2251edc 100644 --- a/gestalt/__init__.py +++ b/gestalt/__init__.py @@ -60,7 +60,6 @@ def add_config_path(self, path: str) -> None: ValueError: If the `path` does not exist or is it not a directory """ tmp = os.path.abspath(os.path.expandvars(path)) - print(tmp) if not os.path.lexists(tmp): raise ValueError(f'Given path of {path} does not exist') if not os.path.isdir(tmp):