itholic commented on code in PR #40525: URL: https://github.com/apache/spark/pull/40525#discussion_r1159196999
########## python/pyspark/pandas/internal.py: ########## @@ -25,7 +25,13 @@ import pandas as pd from pandas.api.types import CategoricalDtype # noqa: F401 from pyspark._globals import _NoValue, _NoValueType -from pyspark.sql import functions as F, Column, DataFrame as SparkDataFrame, Window +from pyspark.sql import ( + functions as F, + Column, + DataFrame as LegacyDataFrame, + Window, + SparkSession as PySparkSession, +) Review Comment: Let me consolidate them into `PySparkxxx` -- 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]
