Skip to content

Commit 30de88c

Browse files
committed
Merge branch 'feat/edges-creation' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/edges-creation
2 parents 70c58e5 + f162f01 commit 30de88c

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/opengeodeweb_back/routes/create/schemas/edged_curve.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@
55

66
@dataclass
77
class Point(DataClassJsonMixin):
8+
def __post_init__(self) -> None:
9+
print(self, flush=True)
10+
811
x: float
912
y: float
1013
z: float
1114

1215

1316
@dataclass
1417
class EdgedCurve(DataClassJsonMixin):
18+
def __post_init__(self) -> None:
19+
print(self, flush=True)
20+
21+
edges: List[List[int]]
1522
name: str
1623
points: List[Point]
17-
edges: List[List[int]]

0 commit comments

Comments
 (0)