pabloem commented on a change in pull request #13277:
URL: https://github.com/apache/beam/pull/13277#discussion_r522422198
##########
File path: sdks/python/apache_beam/runners/interactive/user_pipeline_tracker.py
##########
@@ -34,31 +38,29 @@ class UserPipelineTracker:
derived pipelines.
"""
def __init__(self):
- self._user_pipelines = set()
- self._derived_pipelines = {}
- self._pid_to_pipelines = {}
+ self._user_pipelines: set[beam.Pipeline] = set()
+ self._derived_pipelines: map[beam.Pipeline] = {}
+ self._pid_to_pipelines: map[beam.Pipeline] = {}
Review comment:
the `map`s
Precommit has been fixed on master so your next commit should not have the
botocore precommit issues
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]