diff --git a/src/lr_reduction/scaling_factors/__init__.py b/src/lr_reduction/scaling_factors/__init__.py index 93577b3..e69de29 100644 --- a/src/lr_reduction/scaling_factors/__init__.py +++ b/src/lr_reduction/scaling_factors/__init__.py @@ -1,13 +0,0 @@ -from lr_reduction.scaling_factors.calculate import ( - OverlapInfo, - OverlapScalingFactor, - ReducedData, - scaling_factor_critical_edge, -) - -__all__ = [ - "ReducedData", - "OverlapInfo", - "scaling_factor_critical_edge", - "OverlapScalingFactor", -] diff --git a/src/lr_reduction/scaling_factors/calculate.py b/src/lr_reduction/stitching.py similarity index 100% rename from src/lr_reduction/scaling_factors/calculate.py rename to src/lr_reduction/stitching.py diff --git a/tests/test_scaling_factors.py b/tests/test_scaling_factors.py index 0777df5..43a31d7 100644 --- a/tests/test_scaling_factors.py +++ b/tests/test_scaling_factors.py @@ -2,7 +2,7 @@ import pytest from pytest import approx -from lr_reduction.scaling_factors import ( +from lr_reduction.stitching import ( OverlapScalingFactor, ReducedData, scaling_factor_critical_edge, diff --git a/tests/unit/lr_reduction/test_overlap_scaling_factor.py b/tests/unit/lr_reduction/test_overlap_scaling_factor.py index b396464..f75ea10 100644 --- a/tests/unit/lr_reduction/test_overlap_scaling_factor.py +++ b/tests/unit/lr_reduction/test_overlap_scaling_factor.py @@ -4,7 +4,7 @@ import pytest from pytest import approx -from lr_reduction.scaling_factors import OverlapScalingFactor, ReducedData +from lr_reduction.stitching import OverlapScalingFactor, ReducedData # Create some fake linear data for testing