first fix for follower path bug

This commit is contained in:
Robert Caulk 2022-07-24 23:32:02 +02:00
parent 520ee3f7a1
commit ab587747fb

View File

@ -151,7 +151,7 @@ class FreqaiDataDrawer:
for pair in whitelist_pairs:
self.follower_dict[pair] = {}
with open(self.follow_path, "w") as fp:
with open(self.follow_path_dict, "w") as fp:
json.dump(self.follower_dict, fp, default=self.np_encoder)
def np_encoder(self, object):