From 832e68cb6f0ca379da77f9e243cefde2f84773cf Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 9 Jul 2025 13:51:06 +0500 Subject: [PATCH] Fix Ruff UP034 (extraneous-parentheses) --- .../ifcopenshell/api/alignment/add_stationing_referent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/api/alignment/add_stationing_referent.py b/src/ifcopenshell-python/ifcopenshell/api/alignment/add_stationing_referent.py index 7709d44fdf..49f30dcbb2 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/alignment/add_stationing_referent.py +++ b/src/ifcopenshell-python/ifcopenshell/api/alignment/add_stationing_referent.py @@ -88,7 +88,7 @@ def add_stationing_referent( ) ), CartesianPosition=file.createIfcAxis2Placement3D( - Location=file.createIfcCartesianPoint(((x, y, z))), + Location=file.createIfcCartesianPoint((x, y, z)), Axis=file.createIfcDirection((ax, ay, az)), RefDirection=file.createIfcDirection((rx, ry, rz)), ),