Skip to content

Commit 7cf6c71

Browse files
committed
Fix presentation lint formatting
1 parent 18dc426 commit 7cf6c71

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/azurefox/chains/presentation.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def normalize_chain_path_row(family: str, row: dict) -> dict:
9090
return normalized_row
9191

9292
if family == "deployment-path":
93-
normalized_row["source"] = str(row.get("source") or stack_chain_source(row.get("asset_name")))
93+
normalized_row["source"] = str(
94+
row.get("source") or stack_chain_source(row.get("asset_name"))
95+
)
9496
normalized_row["actionability"] = str(
9597
row.get("actionability") or deployment_actionability_label(row)
9698
)
@@ -111,7 +113,9 @@ def normalize_chain_path_row(family: str, row: dict) -> dict:
111113
normalized_row["whats_missing"] = str(
112114
row.get("whats_missing") or normalized_row["confidence_boundary"]
113115
)
114-
normalized_row["note"] = str(row.get("note") or row.get("why_care") or row.get("asset_kind") or "")
116+
normalized_row["note"] = str(
117+
row.get("note") or row.get("why_care") or row.get("asset_kind") or ""
118+
)
115119
return normalized_row
116120

117121
if family == "escalation-path":

0 commit comments

Comments
 (0)