Spenserrrr commented on code in PR #57611: URL: https://github.com/apache/spark/pull/57611#discussion_r3755958136
########## python/pyspark/sql/connect/readwriter.py: ########## @@ -15,8 +15,9 @@ # limitations under the License. # from typing import Dict -from typing import Optional, Union, List, overload, Tuple, cast, Callable +from typing import Any, Optional, Union, List, overload, Tuple, cast, Callable from typing import TYPE_CHECKING +from abc import ABC, abstractmethod Review Comment: Thanks for pointing it out! I just moved it to the top. -- 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]
