Indentation fixes

This commit is contained in:
Conner Fromknecht
2017-07-10 20:11:45 -07:00
parent 6f79f8b9b8
commit 6b4209e038
+4 -4
View File
@@ -115,10 +115,10 @@ class PoloniexCurator(object):
Pulls latest data for all currency pairs
'''
def append_data(self):
for currencyPair in self.currency_pairs:
self.append_data_single_pair(currencyPair)
# Rate limit is 6 calls per second, sleep 1sec/6 to be safe
time.sleep(0.17)
for currencyPair in self.currency_pairs:
self.append_data_single_pair(currencyPair)
# Rate limit is 6 calls per second, sleep 1sec/6 to be safe
time.sleep(0.17)
'''
Returns a data frame for all pairs, or for the requests currency pair.