remove unused import

This commit is contained in:
Daniel Roth 2026-04-13 13:36:50 +00:00
parent 94b367873a
commit 44df08b549

View file

@ -1,4 +1,4 @@
from dataclasses import dataclass, field from dataclasses import dataclass
from typing import List, Optional from typing import List, Optional
@ -19,6 +19,7 @@ class PropertyDetails:
@dataclass @dataclass
class FloorDimensions: class FloorDimensions:
"""Floor area and geometry for one storey of one building part.""" """Floor area and geometry for one storey of one building part."""
total_floor_area_m2: float total_floor_area_m2: float
height_m: float height_m: float
heat_loss_perimeter_m: Optional[float] = None heat_loss_perimeter_m: Optional[float] = None