From dbd64ebb0e0faccef6506a6693ce856561c6e655 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 18 Oct 2024 11:19:51 +0500 Subject: [PATCH] black . --- src/bonsai/bonsai/bim/module/model/wall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bonsai/bonsai/bim/module/model/wall.py b/src/bonsai/bonsai/bim/module/model/wall.py index c96b7b909d..8df0c66f80 100644 --- a/src/bonsai/bonsai/bim/module/model/wall.py +++ b/src/bonsai/bonsai/bim/module/model/wall.py @@ -1469,7 +1469,7 @@ class DumbWallJoiner: if connection1 == connection2: if (connected_at_end and angle > 0) or (not connected_at_end and angle < 0): - if layers1['direction_sense'] == 'POSITIVE': + if layers1["direction_sense"] == "POSITIVE": pt = bbf.to_2d().to_3d() x_axis = bsn - bbf y_axis = tbf - bbf @@ -1479,7 +1479,7 @@ class DumbWallJoiner: y_axis = tsf - bsf else: print(">>>>B") - if layers1['direction_sense'] == 'POSITIVE': + if layers1["direction_sense"] == "POSITIVE": pt = bbn.to_2d().to_3d() x_axis = bsf - bbn y_axis = tbn - bbn @@ -1489,7 +1489,7 @@ class DumbWallJoiner: y_axis = tsn - bsn else: if (connected_at_end and angle < 0) or (not connected_at_end and angle > 0): - if layers1['direction_sense'] == 'POSITIVE': + if layers1["direction_sense"] == "POSITIVE": pt = bbf.to_2d().to_3d() x_axis = bsn - bbf y_axis = tbf - bbf @@ -1498,7 +1498,7 @@ class DumbWallJoiner: x_axis = bbn - bsf y_axis = tsf - bsf else: - if layers1['direction_sense'] == 'POSITIVE': + if layers1["direction_sense"] == "POSITIVE": pt = bbn.to_2d().to_3d() x_axis = bsf - bbn y_axis = tbn - bbn