From 4a83bc3d311c6ed8fbdd175054718913c6ef05b7 Mon Sep 17 00:00:00 2001 From: mxnavid Date: Mon, 21 Aug 2023 09:56:41 -0400 Subject: [PATCH] Minor: Profiler Path Fix in Example Notebook --- examples/merge_profile_list.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/merge_profile_list.ipynb b/examples/merge_profile_list.ipynb index 4654caf8f..7a6d8005a 100644 --- a/examples/merge_profile_list.ipynb +++ b/examples/merge_profile_list.ipynb @@ -37,10 +37,10 @@ "try:\n", " sys.path.insert(0, '..')\n", " import dataprofiler as dp\n", - " from dataprofiler.profilers.utils import merge_profile_list\n", + " from dataprofiler.profilers.profiler_utils import merge_profile_list\n", "except ImportError:\n", " import dataprofiler as dp\n", - " from dataprofiler.profilers.utils import merge_profile_list\n", + " from dataprofiler.profilers.profiler_utils import merge_profile_list\n", "\n", "# remove extra tf loggin\n", "tf.compat.v1.logging.set_verbosity(tf.compat.v1.logging.ERROR)"