Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/some_documentation' into some_do…
Browse files Browse the repository at this point in the history
…cumentation
  • Loading branch information
ahsimb committed Jan 9, 2025
2 parents d74e3a1 + ada74b9 commit 684734e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def _handle_finished_result(
) -> ResultHandlerReturnValue:
"""
We are done with the current node.
If there are successors we need to add the final output from this node to the
If there are successors, then we need to add the final output from this node to the
list of inputs of all the successors.
"""
if self._is_not_last_stage():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
@dataclass(frozen=True)
class SQLStageInputOutput:
"""
This is a type root for a class representing an input/output data for a customer
provided node-level query handler - SQLStageQueryHandler. The actual content of
the input/output is application specific.
This is a type root for a class representing input/output data for a customer
provided node-level query handler extending class SQLStageQueryHandler. The actual content of
the input/output is application-specific.
"""
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SQLStage(Stage):
"""
This is a node of an ExecutionGraph.
Essentially, this is a node-level query handler factory. The query handler
itself is user-provided and so is this factory.
itself is user-provided and so are the factories implementing this interface.
"""

@abc.abstractmethod
Expand Down

0 comments on commit 684734e

Please sign in to comment.