bjornjorgensen commented on code in PR #40525: URL: https://github.com/apache/spark/pull/40525#discussion_r1148591182
########## python/pyspark/pandas/data_type_ops/base.py: ########## @@ -24,7 +24,7 @@ import pandas as pd from pandas.api.types import CategoricalDtype -from pyspark.sql import functions as F, Column +from pyspark.sql import functions as F, Column as PySparkColumn Review Comment: Does this work? from pyspark.sql import functions as F from pyspark.sql.column import Column as PySparkColumn -- 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]
