Skip to content

Commit f162f01

Browse files
MaxNumeriquegithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 36bd6c3 commit f162f01

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)