Skip to content

Commit

Permalink
Fix unmatched quotes (0.2.39 regression)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValueRaider committed May 19, 2024
1 parent 0493373 commit 7af213d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yfinance/scrapers/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ def _fix_bad_stock_splits(self, df, interval, tz_exchange):
logger.debug('price-repair-split: No splits in data')
return df

logger.debug(f'price-repair-split: Splits: {str(df['Stock Splits'][split_f].to_dict())}')
logger.debug(f'price-repair-split: Splits: {str(df["Stock Splits"][split_f].to_dict())}')

if 'Repaired?' not in df.columns:
df['Repaired?'] = False
Expand Down

0 comments on commit 7af213d

Please sign in to comment.