vtlim commented on code in PR #13938:
URL: https://github.com/apache/druid/pull/13938#discussion_r1137684110
##########
examples/quickstart/jupyter-notebooks/druidapi/druidapi/__init__.py:
##########
@@ -13,14 +13,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from .druid import DruidClient
+from druidapi.druid import DruidClient
def jupyter_client(endpoint) -> DruidClient:
'''
Create a Druid client configured to display results as HTML withing a
Jupyter notebook.
Waits for the cluster to become ready to avoid intermitent problems when
using Druid.
'''
- from .html import HtmlDisplayClient
+ from .html_table import HtmlDisplayClient
Review Comment:
Yes -- I updated the filename to avoid a circular import error:
```
ImportError: cannot import name 'escape' from partially initialized module
'html' (most likely due to a circular import)
```
Will re-update `html_table.py` and `text.py` as we discussed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]