Skip to content

Commit e08c5a0

Browse files
committed
Fix var reference
1 parent 694f5eb commit e08c5a0

File tree

1 file changed

+1
-1
lines changed
  • investing_algorithm_framework/domain/backtesting

1 file changed

+1
-1
lines changed

investing_algorithm_framework/domain/backtesting/backtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def open(directory_path: Union[str, Path]) -> 'Backtest':
8282
backtest_results = None
8383
data_file_paths = []
8484
strategy_related_paths = []
85-
meta_data = {}
85+
metadata = {}
8686
risk_free_rate = None
8787

8888
if not os.path.exists(directory_path):

0 commit comments

Comments
 (0)