Run black

This commit is contained in:
Thomas Krijnen
2026-09-02 13:48:31 +02:00
parent df3d07e952
commit 99f1051d18
+1 -3
View File
@@ -170,9 +170,7 @@ def is_geometry_writer(file: Path) -> bool:
def collect_ifc_runtime_plugins(dlls: set[Path], dependencies: set[Path]) -> set[Path]:
"""IfcOpenShell plugins are loaded by name at runtime, so dumpbin cannot discover them."""
return {
d
for d in (dlls - dependencies)
if d.name.startswith(IFC_RUNTIME_PLUGIN_PREFIXES) and not is_geometry_writer(d)
d for d in (dlls - dependencies) if d.name.startswith(IFC_RUNTIME_PLUGIN_PREFIXES) and not is_geometry_writer(d)
}