Skip to content

Commit

Permalink
fix: high and low data were swapped.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnsrekt committed Oct 6, 2020
1 parent 77a7b9a commit fc39c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yfs/summary.py
Expand Up @@ -113,10 +113,10 @@ class SummaryPage(Base):

_clean_symbol = cleaner("symbol")(CommonCleaners.clean_symbol)

_clean_highs = cleaner("high", "fifty_two_week_high")(
_clean_highs = cleaner("low", "fifty_two_week_low")(
CommonCleaners.clean_first_value_split_by_dash
)
_clean_lows = cleaner("low", "fifty_two_week_low")(
_clean_lows = cleaner("high", "fifty_two_week_high")(
CommonCleaners.clean_second_value_split_by_dash
)
_clean_date = cleaner("earnings_date", "exdividend_date")(CommonCleaners.clean_date)
Expand Down

0 comments on commit fc39c7a

Please sign in to comment.