post merge lint

This commit is contained in:
Andreas Koepf 2025-02-02 10:04:18 +01:00
parent 02cfa9556a
commit f396d3df60
6 changed files with 197 additions and 63 deletions

View file

@ -21,11 +21,13 @@ class AdvancedGeometryConfig:
# Probability or list of tasks we want to generate
# For demonstration, we have three categories:
task_types: List[str] = field(default_factory=lambda: [
"orthocenter",
"incircle_radius",
"angle_measure",
])
task_types: List[str] = field(
default_factory=lambda: [
"orthocenter",
"incircle_radius",
"angle_measure",
]
)
def validate(self):
assert self.min_coord < self.max_coord, "min_coord must be < max_coord."