James McCool
commited on
Commit
·
bb549d3
1
Parent(s):
02245bb
Remove unused import statement from hedging_preset.py to clean up the code and improve maintainability. This change enhances clarity by eliminating unnecessary dependencies.
Browse files
global_func/hedging_preset.py
CHANGED
@@ -2,7 +2,6 @@ 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 |
-
from global_func.get_portfolio_names import trim_portfolio
|
6 |
|
7 |
def hedging_preset(portfolio: pd.DataFrame, lineup_target: int, projections_file: pd.DataFrame):
|
8 |
|
|
|
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 |
|