Skip to content

Commit bbd1c8f

Browse files
committed
[CLN] Use relative imports in manipulate_points module
Switched to relative imports for better modularity and cleaner project structure. This change improves maintainability and aligns with Python's best practices for package organization.
1 parent c85d5f6 commit bbd1c8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gempy/modules/data_manipulation/manipulate_points.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import numpy as np
44

5-
from gempy.core.data import GeoModel, StructuralFrame, SurfacePointsTable, StructuralElement, OrientationsTable
6-
from gempy.core.data.orientations import DEFAULT_ORI_NUGGET
7-
from gempy.core.data.surface_points import DEFAULT_SP_NUGGET
5+
from ...core.data import GeoModel, StructuralFrame, SurfacePointsTable, StructuralElement, OrientationsTable
6+
from ...core.data.orientations import DEFAULT_ORI_NUGGET
7+
from ...core.data.surface_points import DEFAULT_SP_NUGGET
88

99

1010
def add_surface_points(

0 commit comments

Comments
 (0)