Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions src/lr_reduction/scaling_factors/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
]
2 changes: 1 addition & 1 deletion tests/test_scaling_factors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/lr_reduction/test_overlap_scaling_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading