remove unnecessary comments from data_drawer.py

This commit is contained in:
robcaulk 2022-07-23 13:35:44 +02:00
parent a1cff377ec
commit 50d630a155
1 changed files with 3 additions and 7 deletions

View File

@ -76,7 +76,7 @@ class FreqaiDataDrawer:
:returns: :returns:
exists: bool = whether or not the drawer was located exists: bool = whether or not the drawer was located
""" """
exists = self.pair_dictionary_path.is_file() # resolve().exists() exists = self.pair_dictionary_path.is_file()
if exists: if exists:
with open(self.pair_dictionary_path, "r") as fp: with open(self.pair_dictionary_path, "r") as fp:
self.pair_dict = json.load(fp) self.pair_dict = json.load(fp)
@ -96,7 +96,7 @@ class FreqaiDataDrawer:
:returns: :returns:
exists: bool = whether or not the drawer was located exists: bool = whether or not the drawer was located
""" """
exists = self.historic_predictions_path.is_file() # resolve().exists() exists = self.historic_predictions_path.is_file()
if exists: if exists:
with open(self.historic_predictions_path, "rb") as fp: with open(self.historic_predictions_path, "rb") as fp:
self.historic_predictions = cloudpickle.load(fp) self.historic_predictions = cloudpickle.load(fp)
@ -143,11 +143,7 @@ class FreqaiDataDrawer:
whitelist_pairs = self.config.get("exchange", {}).get("pair_whitelist") whitelist_pairs = self.config.get("exchange", {}).get("pair_whitelist")
exists = ( exists = self.follower_dict_path.is_file()
self.follower_dict_path.is_file()
# .resolve()
# .exists()
)
if exists: if exists:
logger.info("Found an existing follower dictionary") logger.info("Found an existing follower dictionary")