ueshin commented on code in PR #45377: URL: https://github.com/apache/spark/pull/45377#discussion_r1518206202
########## python/pyspark/errors/utils.py: ########## @@ -15,12 +15,22 @@ # limitations under the License. # +import builtins import re -from typing import Dict, Match +import functools +import inspect +import threading +from typing import Any, Callable, Dict, Match, TypeVar, Type + +from IPython import get_ipython Review Comment: I don't think `IPython` module is always available. -- 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]
