fix numpy complaining about .any() / .all()

This commit is contained in:
jan 2022-02-28 23:03:23 -08:00
parent d8b60da827
commit 20be409341

View File

@ -260,7 +260,7 @@ class Shape(PositionableImpl, LayerableImpl, DoseableImpl, Rotatable, Mirrorable
for polygon in self.to_polygons(): for polygon in self.to_polygons():
# Get rid of unused gridlines (anything not within 2 lines of the polygon bounds) # Get rid of unused gridlines (anything not within 2 lines of the polygon bounds)
bounds = polygon.get_bounds() bounds = polygon.get_bounds()
if not bounds: if bounds is None:
continue continue
mins, maxs = bounds mins, maxs = bounds