Skip to content

Commit

Permalink
Remove unused params from StreamingDataFrame
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-quix committed Oct 25, 2023
1 parent ac5dab5 commit 31eb2f2
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,9 @@ def __init__(
self,
topics_in: List[Topic],
state_manager: StateStoreManager,
# TODO: Do we need these params?
_pipeline: Pipeline = None,
_id: str = None,
):
self._id = _id or str(uuid.uuid4())
self._pipeline = _pipeline or Pipeline(_id=self.id)
self._id = str(uuid.uuid4())
self._pipeline = Pipeline(_id=self.id)
self._real_consumer: Optional[RowConsumerProto] = None
self._real_producer: Optional[RowProducerProto] = None
if not topics_in:
Expand Down

0 comments on commit 31eb2f2

Please sign in to comment.