From abeefeeee75e62c19ad4fa2e86e48efd58c610c7 Mon Sep 17 00:00:00 2001 From: Benoit DAMAY Date: Tue, 12 Mar 2024 10:01:58 +0100 Subject: [PATCH] removing debug print from previous commit --- src/ifcpatch/ifcpatch/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ifcpatch/ifcpatch/__init__.py b/src/ifcpatch/ifcpatch/__init__.py index 10df65a459..4fd9bf187c 100644 --- a/src/ifcpatch/ifcpatch/__init__.py +++ b/src/ifcpatch/ifcpatch/__init__.py @@ -100,7 +100,6 @@ def write(output: Union[ifcopenshell.file, str], filepath: str) -> None: return elif isinstance(output, str): if os.path.exists(output): - print('DEBUG shutil') shutil.move(output, filepath) else: with open(filepath, "w") as text_file: