We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aee673 commit 4147908Copy full SHA for 4147908
src/databricks/labs/ucx/assessment/sequencing.py
@@ -49,9 +49,11 @@ class MigrationNode:
49
50
@property
51
def key(self) -> MigrationNodeKey:
52
+ """Unique identifier of the node."""
53
return self.object_type, self.object_id
54
55
def as_step(self, step_number: int, required_step_ids: list[int]) -> MigrationStep:
56
+ """Convert to class:MigrationStep."""
57
return MigrationStep(
58
step_id=self.node_id,
59
step_number=step_number,
0 commit comments