UjjwalKGupta commited on
Commit
53144e5
·
verified ·
1 Parent(s): 882e722

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def convert_to_2d_geometry(geom):
32
  if geom is None:
33
  return None
34
  elif geom.has_z:
35
- return transform(lambda x, y, z: (x, y), shape)
36
  else:
37
  return geom
38
 
 
32
  if geom is None:
33
  return None
34
  elif geom.has_z:
35
+ return transform(lambda x, y, z: (x, y), geom)
36
  else:
37
  return geom
38