From 109ce4cd1d12954ecb5aa76e264a39076036e8ab Mon Sep 17 00:00:00 2001 From: Pebaz Date: Tue, 17 Dec 2019 21:41:29 -0500 Subject: [PATCH] Remove debug print --- nimporter.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nimporter.py b/nimporter.py index 5932f48..b859a0c 100644 --- a/nimporter.py +++ b/nimporter.py @@ -219,10 +219,6 @@ def find_spec(cls, fullname, path=None, target=None): ] for search_path in search_paths: - - if (search_path / package).glob(module_file): - print('GOT IT GOT IT', fullname, path, search_path, module_file) - # NOTE(pebaz): Found an importable/compileable module if (search_path / package).glob(module_file): module_path = search_path / module_file