Fix docstrings and typo

This commit is contained in:
Matthias
2018-12-16 09:58:46 +01:00
parent 8a3c2a0c63
commit f5b2430cda
3 changed files with 11 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ def parse_ticker_dataframe(ticker: list) -> DataFrame:
'volume': 'max',
})
frame.drop(frame.tail(1).index, inplace=True) # eliminate partial candle
logger.debug('Droppling last candle')
logger.debug('Dropping last candle')
return frame