James McCool
commited on
Commit
·
10c821a
1
Parent(s):
119b2bf
Update import statements in hedging_preset.py to reflect new module structure. This change ensures proper access to small_field_preset and large_field_preset functions, enhancing code organization and maintainability.
Browse files
global_func/hedging_preset.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import pandas as pd
|
2 |
import math
|
3 |
-
from small_field_preset import small_field_preset
|
4 |
-
from large_field_preset import large_field_preset
|
5 |
|
6 |
def hedging_preset(portfolio: pd.DataFrame, lineup_target: int, projections_file: pd.DataFrame):
|
7 |
|
|
|
1 |
import pandas as pd
|
2 |
import math
|
3 |
+
from global_func.small_field_preset import small_field_preset
|
4 |
+
from global_func.large_field_preset import large_field_preset
|
5 |
|
6 |
def hedging_preset(portfolio: pd.DataFrame, lineup_target: int, projections_file: pd.DataFrame):
|
7 |
|