Removed docstring indents

This commit is contained in:
Sam Germain
2021-11-09 01:00:57 -06:00
parent d0b91b334e
commit 6c8501dadc
4 changed files with 61 additions and 61 deletions

View File

@@ -231,8 +231,8 @@ class Binance(Exchange):
def funding_fee_cutoff(self, d: datetime):
'''
# TODO-lev: Double check that gateio, ftx, and kraken don't also have this
:param d: The open date for a trade
:return: The cutoff open time for when a funding fee is charged
# TODO-lev: Double check that gateio, ftx, and kraken don't also have this
:param d: The open date for a trade
:return: The cutoff open time for when a funding fee is charged
'''
return d.minute > 0 or (d.minute == 0 and d.second > 15)