Copilot commented on code in PR #2077: URL: https://github.com/apache/sedona/pull/2077#discussion_r2193915104
########## python/sedona/spark/sql/st_functions.py: ########## @@ -20,7 +20,7 @@ from typing import Optional, Union from pyspark.sql import Column -from pyspark.sql.functions import lit +from pyspark.sql.functions import lit, col Review Comment: The `lit` import is not used in this module. Removing unused imports helps keep the code clean. ```suggestion from pyspark.sql.functions import col ``` -- 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]
