lazy toolbox: apply project formatting

This commit is contained in:
mvdbeek
2026-07-28 17:27:46 +02:00
parent a8ef443c8b
commit 20f5d640c1
+1 -3
View File
@@ -1999,9 +1999,7 @@ class LazyToolBox(ToolBox):
req_tuple = (req.get("name"), req.get("version"), req.get("type"))
requirements.add(req_tuple)
return [
{"name": r[0], "version": r[1], "type": r[2]}
for r in requirements
if r[0] # Filter out empty names
{"name": r[0], "version": r[1], "type": r[2]} for r in requirements if r[0] # Filter out empty names
]
return []