We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4a7571 commit 1358d06Copy full SHA for 1358d06
1 file changed
src/graphomotor/core/models.py
@@ -9,8 +9,6 @@
9
import pydantic
10
import scipy.spatial.distance as dist
11
12
-from graphomotor.core import config
13
-
14
15
class Drawing(pydantic.BaseModel):
16
"""Class representing a drawing task, encapsulating both raw data and metadata.
@@ -506,6 +504,8 @@ def compute_segment_metrics(
506
504
CircleTarget instances (output of load_scaled_circles in config).
507
505
trail_id: Trail identifier for circle lookup.
508
"""
+ from graphomotor.core import config
+
509
logger = config.get_logger()
510
trail_circles = circles[trail_id]
511
points = self.points.copy()
0 commit comments