remove debug statement

This commit is contained in:
Laura Klünder 2017-10-19 15:53:25 +02:00
parent 7d0c0f3288
commit 2636eed687

View file

@ -41,7 +41,6 @@ class LevelGeometries:
walkable_geom = unary_union([s.walkable_geom for s in level.spaces.all()]).union(geoms.doors)
if level.on_top_of_id is None:
geoms.holes = spaces_geom.difference(walkable_geom)
print(level.pk, geoms.holes.area)
for altitudearea in level.altitudeareas.all():
geoms.altitudeareas.append((altitudearea.geometry.intersection(walkable_geom), altitudearea.altitude))