We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36bd6c3 commit f162f01Copy full SHA for f162f01
1 file changed
src/opengeodeweb_back/routes/create/schemas/edged_curve.py
@@ -5,13 +5,19 @@
5
6
@dataclass
7
class Point(DataClassJsonMixin):
8
+ def __post_init__(self) -> None:
9
+ print(self, flush=True)
10
+
11
x: float
12
y: float
13
z: float
14
15
16
17
class EdgedCurve(DataClassJsonMixin):
18
19
20
21
+ edges: List[List[int]]
22
name: str
23
points: List[Point]
- edges: List[List[int]]
0 commit comments