Skip to content

Commit 10c4f5c

Browse files
fix(CrossSection): is_saveable method
1 parent d0fe9ab commit 10c4f5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/opengeodeweb_back/geode_objects.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def geode_objects_dict():
3333
"output_factory": og_gs.CrossSectionOutputFactory,
3434
"missing_files": og_gs.check_cross_section_missing_files,
3535
"load": og_gs.load_cross_section,
36-
"is_saveable": og.is_section_saveable,
36+
"is_saveable": og_gs.is_cross_section_saveable,
3737
"save": og_gs.save_cross_section,
3838
"builder": og_gs.CrossSectionBuilder,
3939
"crs": {
@@ -315,7 +315,7 @@ def geode_objects_dict():
315315
"output_factory": og.TetrahedralSolidOutputFactory3D,
316316
"missing_files": og.check_tetrahedral_solid_missing_files3D,
317317
"load": og.load_tetrahedral_solid3D,
318-
"is_saveable": og_gs.is_tetrahedral_solid_saveable3D,
318+
"is_saveable": og.is_tetrahedral_solid_saveable3D,
319319
"save": og.save_tetrahedral_solid3D,
320320
"builder": og.TetrahedralSolidBuilder3D.create,
321321
"crs": {
@@ -353,7 +353,7 @@ def geode_objects_dict():
353353
"output_factory": og.TriangulatedSurfaceOutputFactory3D,
354354
"missing_files": og.check_triangulated_surface_missing_files3D,
355355
"load": og.load_triangulated_surface3D,
356-
"is_saveable": og_gs.is_triangulated_surface_saveable3D,
356+
"is_saveable": og.is_triangulated_surface_saveable3D,
357357
"save": og.save_triangulated_surface3D,
358358
"builder": og.TriangulatedSurfaceBuilder3D.create,
359359
"crs": {

0 commit comments

Comments
 (0)