Skip to content

Commit e873510

Browse files
committed
blackify
1 parent 162f0aa commit e873510

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sectionproperties/tests/test_sections.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ def test_for_incidental_holes():
7575

7676
def test__sub__():
7777
small_hole.material = steel
78-
top_left = small_hole.align_to(big_sq, on="left").align_to(big_sq, on="top").shift_section(20, -20)
78+
top_left = (
79+
small_hole.align_to(big_sq, on="left")
80+
.align_to(big_sq, on="top")
81+
.shift_section(20, -20)
82+
)
7983
top_right = top_left.shift_section(x_offset=200)
8084

8185
compound = big_sq - top_left
@@ -84,7 +88,7 @@ def test__sub__():
8488
compound = compound + top_right
8589

8690
assert len(compound.control_points) == 3
87-
# Incomplete test to validate that the iterative __sub__ produces
91+
# Incomplete test to validate that the iterative __sub__ produces
8892
# three distinct regions with proper material assignments
8993

9094

0 commit comments

Comments
 (0)