Datasets:
fix typing bug in stocks.py
#1
by
OfirArviv
- opened
stocks.py
CHANGED
@@ -69,7 +69,7 @@ class StockMarketAnalyzer:
|
|
69 |
return stock_ratio > sector_ratio
|
70 |
|
71 |
|
72 |
-
def load_stock_prices(files: Iterable[Path]) ->
|
73 |
"""
|
74 |
Load stock prices from CSV files into a dictionary of DataFrames.
|
75 |
|
|
|
69 |
return stock_ratio > sector_ratio
|
70 |
|
71 |
|
72 |
+
def load_stock_prices(files: Iterable[Path]) -> Dict[str, pd.DataFrame]:
|
73 |
"""
|
74 |
Load stock prices from CSV files into a dictionary of DataFrames.
|
75 |
|