diff options
| author | Lex Neva <github.com@lexneva.name> | 2022-05-06 21:03:56 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2022-05-06 21:03:56 -0400 |
| commit | 672bded1259589d609d1a6656df5537c5da20569 (patch) | |
| tree | ff1b05317c56d47530dfe6931b7c4919812301db /lib/extensions | |
| parent | a7153c52e2c295ef2a7296ec09bcd7cd5317809d (diff) | |
shapely geoms fixes
Diffstat (limited to 'lib/extensions')
| -rw-r--r-- | lib/extensions/break_apart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/break_apart.py b/lib/extensions/break_apart.py index 5bfd88a4..581e49bc 100644 --- a/lib/extensions/break_apart.py +++ b/lib/extensions/break_apart.py @@ -83,7 +83,7 @@ class BreakApart(InkstitchExtension): if diff.geom_type == 'MultiPolygon': polygons.remove(other) polygons.remove(polygon) - for p in diff: + for p in diff.geoms: polygons.append(p) # it is possible, that a polygons overlap with multiple # polygons, this means, we need to start all over again |
