From 77131eb0deb48f0d232459b815032a6906a3b2f0 Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 6 Aug 2024 16:17:32 -0400 Subject: [PATCH] quote.csv file bugfix --- src/dexorder/final_ohlc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dexorder/final_ohlc.py b/src/dexorder/final_ohlc.py index cebf552..bd644d6 100644 --- a/src/dexorder/final_ohlc.py +++ b/src/dexorder/final_ohlc.py @@ -291,6 +291,7 @@ class OHLCFileSeries: try: start, old_time, old_price = line.split(',') except ValueError: + self.quote_file.seek(0) line = None if line: # noinspection PyUnboundLocalVariable