Fokko commented on code in PR #4745: URL: https://github.com/apache/iceberg/pull/4745#discussion_r870996580
########## python_legacy/iceberg/core/data_table_scan.py: ########## @@ -18,7 +18,7 @@ import itertools import logging from multiprocessing import cpu_count -from multiprocessing.dummy import Pool Review Comment: nit; we could combine the imports: ```python from multiprocessing import cpu_count, Pool ``` -- 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]
