File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/opengeodeweb_back/routes Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ def create_point():
292292 builder = geode_functions .create_builder ("PointSet3D" , PointSet3D )
293293 builder .create_point (opengeode .Point3D ([x , y , z ]))
294294 builder .set_name (title )
295- print (PointSet3D .name (), flush = True )
296295 name = PointSet3D .name ()
297296 generated_id = str (uuid .uuid4 ()).replace ("-" , "" )
298297 object_type = geode_functions .get_object_type ("PointSet3D" )
@@ -302,14 +301,10 @@ def create_point():
302301 saved_viewable_file_path = geode_functions .save_viewable (
303302 "PointSet3D" , PointSet3D , DATA_FOLDER_PATH , generated_id
304303 )
305- print (saved_native_file_path , flush = True )
306304
307305 native_file_name = os .path .basename (saved_native_file_path [0 ])
308306 viewable_file_name = os .path .basename (saved_viewable_file_path )
309307
310- print (f"{ native_file_name = } " , flush = True )
311- print (f"{ viewable_file_name = } " , flush = True )
312-
313308 return flask .make_response (
314309 {
315310 "viewable_file_name" : os .path .basename (saved_viewable_file_path ),
You can’t perform that action at this time.
0 commit comments