Skip to content

Commit 6ba0adb

Browse files
committed
Sort HistoricalRecord attributes
1 parent cc2fd30 commit 6ba0adb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/databricks/labs/ucx/progress/install.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ class HistoricalRecord:
2323
run_as: str
2424
"""The identity of the account that ran the workflow that generated this record."""
2525

26+
run_start_time: dt.datetime
27+
"""When this record was generated."""
28+
2629
snapshot_id: int
2730
"""An identifier that is unique to the records produced for a given snapshot."""
2831

29-
run_start_time: dt.datetime
30-
"""When this record was generated."""
32+
failures: list[str]
33+
"""The list of problems associated with the object that this inventory record covers."""
3134

3235
object_type: str
3336
"""The inventory table for which this record was generated."""
@@ -41,9 +44,6 @@ class HistoricalRecord:
4144
object_owner: str
4245
"""The identity that has ownership of the object."""
4346

44-
failures: list[str]
45-
"""The list of problems associated with the object that this inventory record covers."""
46-
4747
object_type_version: int = 0
4848
"""Versioning of inventory table, for forward compatibility."""
4949

0 commit comments

Comments
 (0)