File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" :
You can’t perform that action at this time.
0 commit comments