dchvn commented on a change in pull request #34363:
URL: https://github.com/apache/spark/pull/34363#discussion_r738913940
##########
File path: python/pyspark/accumulators.py
##########
@@ -20,20 +20,32 @@
import struct
import socketserver as SocketServer
import threading
+from typing import TypeVar, Generic, Tuple, Callable, Type, Dict, Union,
TYPE_CHECKING
+
from pyspark.serializers import read_int, PickleSerializer
+if TYPE_CHECKING:
+ from pyspark._typing import SupportsIAdd
+ import socketserver.BaseRequestHandler # type: ignore
Review comment:
update from ```ignore``` to ```ignore[import]```
--
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]