Skip to content

Commit

Permalink
Update - Bug Fix - Fixed list index skipping - Good
Browse files Browse the repository at this point in the history
  • Loading branch information
REPNOT committed Apr 4, 2024
1 parent da2f516 commit f87a777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
and industry information.
"""

__version__ = "1.12.0"
__version__ = "1.13.0"
__author__ = "Derek Evans <https://github.com/REPNOT>"
__date__ = "28 March 2024"

Expand Down Expand Up @@ -499,7 +499,7 @@ def history(self, symbol, days=None, date=None, date_start=None, date_end=None):
self.data["history"] = []

try:
self.raw_data = self.rawData[::-2]
self.raw_data = self.rawData[1:][::-1]
except:
return '=== ERROR: DATA ERROR ==='

Expand Down

0 comments on commit f87a777

Please sign in to comment.