File tree 2 files changed +1
-2
lines changed
scripts/dts/python-devicetree/src/devicetree
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 439
439
" UP007" , # https://docs.astral.sh/ruff/rules/non-pep604-annotation
440
440
]
441
441
"./scripts/dts/python-devicetree/src/devicetree/edtlib.py" = [
442
- " B904" , # https://docs.astral.sh/ruff/rules/raise-without-from-inside-except
443
442
" SIM118" , # https://docs.astral.sh/ruff/rules/in-dict-keys
444
443
" UP007" , # https://docs.astral.sh/ruff/rules/non-pep604-annotation
445
444
]
Original file line number Diff line number Diff line change @@ -2123,7 +2123,7 @@ def scc_order(self) -> list[list[Node]]:
2123
2123
try :
2124
2124
return self ._graph .scc_order ()
2125
2125
except Exception as e :
2126
- raise EDTError (e )
2126
+ raise EDTError (e ) from None
2127
2127
2128
2128
def _process_properties_r (self , root_node : Node , props_node : Node ) -> None :
2129
2129
"""
You can’t perform that action at this time.
0 commit comments