chore: simplify comment

This commit is contained in:
Matthias
2025-09-07 15:54:16 +02:00
parent cfa855dec8
commit 7d77e63b81

View File

@@ -2813,8 +2813,6 @@ class Exchange:
since_ms=since_ms,
)
# Some exchanges sort OHLCV in ASC order and others in DESC.
# Ex: Bittrex returns the list of OHLCV in ASC order (oldest first, newest last)
# while GDAX returns the list of OHLCV in DESC order (newest first, oldest last)
# Only sort if necessary to save computing time
try:
if data and data[0][0] > data[-1][0]: