Skip to content

Commit 7708ebb

Browse files
Apply prepare changes
1 parent 5e71dfa commit 7708ebb

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@ werkzeug==3.1.2
6060
# flask
6161
# flask-cors
6262

63-
opengeodeweb-microservice==1.*,>=1.0.13

src/opengeodeweb_back/geode_objects/geode_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, graph: og.Graph | None = None) -> None:
1919
@classmethod
2020
def geode_object_type(cls) -> GeodeMeshType:
2121
return "Graph"
22-
22+
2323
@classmethod
2424
def viewer_elements_type(cls) -> ViewerElementsType:
2525
return "edges"

src/opengeodeweb_back/geode_objects/geode_surface_mesh2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def is_3D(cls) -> bool:
2727
@classmethod
2828
def is_viewable(cls) -> bool:
2929
return True
30-
30+
3131
@classmethod
3232
def viewer_elements_type(cls) -> ViewerElementsType:
3333
return "polygons"

src/opengeodeweb_back/geode_objects/geode_vertex_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, vertex_set: og.VertexSet | None = None) -> None:
2121
@classmethod
2222
def geode_object_type(cls) -> GeodeMeshType:
2323
return "VertexSet"
24-
24+
2525
@classmethod
2626
def viewer_elements_type(cls) -> ViewerElementsType:
2727
return "points"

0 commit comments

Comments
 (0)