Skip to content

Commit ed5dc83

Browse files
committed
blackify
1 parent 80375bb commit ed5dc83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sectionproperties/pre/geometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,6 +1951,6 @@ def check_geometry_disjoint(lop: List[Polygon]) -> bool:
19511951
"""
19521952
bool_acc = []
19531953
for idx, poly1 in enumerate(lop):
1954-
for poly2 in lop[idx + 1:]:
1954+
for poly2 in lop[idx + 1 :]:
19551955
bool_acc.append(poly1.intersection(poly2))
19561956
return not all(bool_acc)

0 commit comments

Comments
 (0)