From ab2769646a94ea507d7bf6fadbfa56cdb573bfaa Mon Sep 17 00:00:00 2001 From: Ramon Felciano Date: Sun, 22 Nov 2020 16:05:36 -0800 Subject: [PATCH] Remove stray print statement Removing print statement that gets output all the time, including with automated `jupyter` runs via `papermill` --- nbimporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbimporter.py b/nbimporter.py index 8171064..f7f6ff4 100644 --- a/nbimporter.py +++ b/nbimporter.py @@ -87,7 +87,7 @@ def load_module(self, fullname): print("Ignoring '%s': not a python notebook." % path) return mod - print("Importing Jupyter notebook from %s" % path) + # print("Importing Jupyter notebook from %s" % path) sys.modules[fullname] = mod # extra work to ensure that magics that would affect the user_ns