From 99f1051d18a4c74035079c3bd90b3202ba542989 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 2 Sep 2026 13:48:31 +0200 Subject: [PATCH] Run black --- win/build-all-win.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/win/build-all-win.py b/win/build-all-win.py index bcdea7a623..4139a60bb3 100644 --- a/win/build-all-win.py +++ b/win/build-all-win.py @@ -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) }