jrmccluskey commented on code in PR #36853: URL: https://github.com/apache/beam/pull/36853#discussion_r2546579826
########## sdks/python/apache_beam/runners/interactive/recording_manager.py: ########## @@ -15,13 +15,20 @@ # limitations under the License. # +import collections import logging +import os import threading import time +import uuid import warnings +from concurrent.futures import Future +from concurrent.futures import ThreadPoolExecutor from typing import Any from typing import Dict from typing import List +from typing import Optional +from typing import Set Review Comment: Prefer the use of PEP-585 generics (e.g. can use the built-in `set` directly instead of the typing variant) -- 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]
