Skip to content

Commit c570bff

Browse files
Refactor helpers module into processing
This commit refactors the `helpers` module into a `processing` module with a more logical structure. The `sandbox_observable_helpers.py` file has been split into three new modules: `adjustments.py`, `combinations.py`, and `transforms.py`. This change improves the maintainability and readability of the codebase.
1 parent 04f4627 commit c570bff

File tree

17 files changed

+1686
-1789
lines changed

17 files changed

+1686
-1789
lines changed

src/rtichoke/discrimination/gains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Dict, List, Sequence, Union
66
from plotly.graph_objs._figure import Figure
7-
from rtichoke.helpers.plotly_helper_functions import (
7+
from rtichoke.processing.plotly_helper_functions import (
88
_create_rtichoke_plotly_curve_times,
99
_create_rtichoke_plotly_curve_binary,
1010
_plot_rtichoke_curve_binary,

src/rtichoke/discrimination/lift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Dict, List, Sequence, Union
66
from plotly.graph_objs._figure import Figure
7-
from rtichoke.helpers.plotly_helper_functions import (
7+
from rtichoke.processing.plotly_helper_functions import (
88
_create_rtichoke_plotly_curve_times,
99
_create_rtichoke_plotly_curve_binary,
1010
_plot_rtichoke_curve_binary,

src/rtichoke/discrimination/precision_recall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Dict, List, Sequence, Union
66
from plotly.graph_objs._figure import Figure
7-
from rtichoke.helpers.plotly_helper_functions import (
7+
from rtichoke.processing.plotly_helper_functions import (
88
_create_rtichoke_plotly_curve_times,
99
_create_rtichoke_plotly_curve_binary,
1010
_plot_rtichoke_curve_binary,

src/rtichoke/discrimination/roc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Dict, List, Union, Sequence
66
from plotly.graph_objs._figure import Figure
7-
from rtichoke.helpers.plotly_helper_functions import (
7+
from rtichoke.processing.plotly_helper_functions import (
88
_create_rtichoke_plotly_curve_times,
99
_create_rtichoke_plotly_curve_binary,
1010
_plot_rtichoke_curve_binary,

0 commit comments

Comments
 (0)