Skip to content

Commit 4669f56

Browse files
committed
fix
1 parent 837a3e1 commit 4669f56

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

src/opengeodeweb_back/geode_objects/geode_raster_image2d.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@ def save_light_viewable(self, filename_without_extension: str) -> str:
7878

7979
def inspect(self) -> None:
8080
return None
81+
82+
def vertex_attribute_manager(self) -> og.AttributeManager:
83+
return og.AttributeManager()

src/opengeodeweb_back/geode_objects/geode_raster_image3d.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@ def save_light_viewable(self, filename_without_extension: str) -> str:
7878

7979
def inspect(self) -> None:
8080
return None
81+
82+
def vertex_attribute_manager(self) -> og.AttributeManager:
83+
return og.AttributeManager()

src/opengeodeweb_back/utils_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
# Local application imports
2121
from . import geode_functions
2222
from .geode_objects import geode_objects
23-
from .geode_objects.geode_object import GeodeObjectType, GeodeObject
23+
from .geode_objects.types import GeodeObjectType
24+
from .geode_objects.geode_object import GeodeObject
2425

2526

2627
def increment_request_counter(current_app: flask.Flask) -> None:

0 commit comments

Comments
 (0)