move overlas to its own thing

This commit is contained in:
Jun-te Kim 2026-06-18 10:04:14 +00:00
parent 3809dc4697
commit 7f8bfa5d06
10 changed files with 9 additions and 9 deletions

View file

View file

@ -25,12 +25,12 @@ from __future__ import annotations
from typing import Callable, Optional from typing import Callable, Optional
from domain.epc.attribute_overlay import ( from domain.epc.property_overlays.attribute_overlay import (
built_form_overlay_for, built_form_overlay_for,
property_type_overlay_for, property_type_overlay_for,
) )
from domain.epc.roof_type_overlay import roof_overlay_for from domain.epc.property_overlays.roof_type_overlay import roof_overlay_for
from domain.epc.wall_type_overlay import wall_overlay_for from domain.epc.property_overlays.wall_type_overlay import wall_overlay_for
from domain.modelling.simulation import EpcSimulation from domain.modelling.simulation import EpcSimulation
from repositories.property.property_overrides_reader import ResolvedPropertyOverrides from repositories.property.property_overrides_reader import ResolvedPropertyOverrides

View file

@ -33,7 +33,7 @@ from datatypes.epc.domain.epc_property_data import (
BuildingPartIdentifier, BuildingPartIdentifier,
EpcPropertyData, EpcPropertyData,
) )
from domain.epc.wall_type_overlay import wall_overlay_for from domain.epc.property_overlays.wall_type_overlay import wall_overlay_for
from domain.property.property import Property, PropertyIdentity from domain.property.property import Property, PropertyIdentity
from domain.sap10_calculator.calculator import Sap10Calculator from domain.sap10_calculator.calculator import Sap10Calculator
from infrastructure.epc_client.epc_client_service import EpcClientService from infrastructure.epc_client.epc_client_service import EpcClientService

View file

@ -8,7 +8,7 @@ from __future__ import annotations
import pytest import pytest
from domain.epc.attribute_overlay import ( from domain.epc.property_overlays.attribute_overlay import (
built_form_overlay_for, built_form_overlay_for,
property_type_overlay_for, property_type_overlay_for,
) )

View file

@ -10,7 +10,7 @@ from __future__ import annotations
import pytest import pytest
from datatypes.epc.domain.epc_property_data import BuildingPartIdentifier from datatypes.epc.domain.epc_property_data import BuildingPartIdentifier
from domain.epc.roof_type_overlay import roof_overlay_for from domain.epc.property_overlays.roof_type_overlay import roof_overlay_for
def test_pitched_loft_depth_maps_to_roof_insulation_thickness() -> None: def test_pitched_loft_depth_maps_to_roof_insulation_thickness() -> None:

View file

@ -10,7 +10,7 @@ from __future__ import annotations
import pytest import pytest
from datatypes.epc.domain.epc_property_data import BuildingPartIdentifier from datatypes.epc.domain.epc_property_data import BuildingPartIdentifier
from domain.epc.wall_type_overlay import wall_overlay_for from domain.epc.property_overlays.wall_type_overlay import wall_overlay_for
def test_solid_brick_with_internal_insulation_overlays_main_wall() -> None: def test_solid_brick_with_internal_insulation_overlays_main_wall() -> None:

View file

@ -16,8 +16,8 @@ from datatypes.epc.domain.epc_property_data import (
BuildingPartIdentifier, BuildingPartIdentifier,
EpcPropertyData, EpcPropertyData,
) )
from domain.epc.attribute_overlay import property_type_overlay_for from domain.epc.property_overlays.attribute_overlay import property_type_overlay_for
from domain.epc.wall_type_overlay import wall_overlay_for from domain.epc.property_overlays.wall_type_overlay import wall_overlay_for
from domain.property.property import Property, PropertyIdentity from domain.property.property import Property, PropertyIdentity
_JSON_SAMPLES = Path(__file__).resolve().parents[3] / "backend/epc_api/json_samples" _JSON_SAMPLES = Path(__file__).resolve().parents[3] / "backend/epc_api/json_samples"