diff --git a/requirements.txt b/requirements.txt index 9e24baf..065674a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -61,4 +61,3 @@ wslink==1.12.4 yarl>=1 # via aiohttp -opengeodeweb-microservice==1.*,>=1.0.6rc1 diff --git a/tests/mesh/edges/test_mesh_edges_protocols.py b/tests/mesh/edges/test_mesh_edges_protocols.py index 71796bc..1ba6c79 100644 --- a/tests/mesh/edges/test_mesh_edges_protocols.py +++ b/tests/mesh/edges/test_mesh_edges_protocols.py @@ -2,8 +2,8 @@ from typing import Callable # Third party imports -from src.opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView -from src.opengeodeweb_viewer.rpc.mesh.edges.mesh_edges_protocols import VtkMeshEdgesView +from opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView +from opengeodeweb_viewer.rpc.mesh.edges.mesh_edges_protocols import VtkMeshEdgesView # Local application imports from tests.mesh.test_mesh_protocols import test_register_mesh diff --git a/tests/mesh/points/test_mesh_points_protocols.py b/tests/mesh/points/test_mesh_points_protocols.py index 1da8cff..b298c8d 100644 --- a/tests/mesh/points/test_mesh_points_protocols.py +++ b/tests/mesh/points/test_mesh_points_protocols.py @@ -2,8 +2,8 @@ from typing import Callable, cast # Third party imports -from src.opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView -from src.opengeodeweb_viewer.rpc.mesh.points.mesh_points_protocols import ( +from opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView +from opengeodeweb_viewer.rpc.mesh.points.mesh_points_protocols import ( VtkMeshPointsView, ) diff --git a/tests/mesh/polyhedra/test_mesh_polyhedra_protocols.py b/tests/mesh/polyhedra/test_mesh_polyhedra_protocols.py index e17196e..45b2a1a 100644 --- a/tests/mesh/polyhedra/test_mesh_polyhedra_protocols.py +++ b/tests/mesh/polyhedra/test_mesh_polyhedra_protocols.py @@ -2,8 +2,8 @@ from typing import Callable # Third party imports -from src.opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView -from src.opengeodeweb_viewer.rpc.mesh.polyhedra.polyhedra_protocols import ( +from opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView +from opengeodeweb_viewer.rpc.mesh.polyhedra.polyhedra_protocols import ( VtkMeshPolyhedraView, )