From 6fea72b0454b3b9aa9a94a8cd267a504ce041dd0 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sat, 8 Aug 2026 12:42:25 +0200 Subject: [PATCH] Run black --- src/ifcopenshell-python/ifcopenshell/geom/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/geom/main.py b/src/ifcopenshell-python/ifcopenshell/geom/main.py index 40b7a7ff3a..9787f7efe5 100644 --- a/src/ifcopenshell-python/ifcopenshell/geom/main.py +++ b/src/ifcopenshell-python/ifcopenshell/geom/main.py @@ -689,7 +689,9 @@ class _serializer_factory: output_filename = self._path(output_filename) output_temp_filename = self._path(output_temp_filename) - return ifcopenshell_wrapper.create_geometry_serializer(self.extension, output_filename, output_temp_filename, settings) + return ifcopenshell_wrapper.create_geometry_serializer( + self.extension, output_filename, output_temp_filename, settings + ) def _is_buffer(self, value: Any) -> bool: return isinstance(value, ifcopenshell_wrapper.buffer)