Skip to content

Commit d374d37

Browse files
committed
Removed whitespaces from blank line, and added whitespace between list items
1 parent 9903169 commit d374d37

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

binance/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def get_historical_klines(self, symbol, interval, start_str, end_str=None):
742742
# establish first available start timestamp
743743
first_valid_ts = self._get_earliest_valid_timestamp(symbol, interval)
744744
start_ts = max(start_ts, first_valid_ts)
745-
745+
746746
# if an end time was passed convert it
747747
end_ts = None
748748
if end_str:

tests/test_historical_klines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
def test_exact_amount():
1313
"""Test Exact amount returned"""
1414

15-
first_available_res = [[1500004800000,"0.00005000","0.00005300","0.00001000","0.00004790","663152.00000000",1500004859999,"30.55108144",43,"559224.00000000","25.65468144","83431971.04346950"]]
15+
first_available_res = [[1500004800000, "0.00005000", "0.00005300", "0.00001000", "0.00004790", "663152.00000000", 1500004859999, "30.55108144", 43, "559224.00000000", "25.65468144", "83431971.04346950"]]
1616

1717
first_res = []
18-
row = [1519892340000,"0.00099400","0.00099810","0.00099400","0.00099810","4806.04000000",1519892399999,"4.78553253",154,"1785.14000000","1.77837524","0"]
18+
row = [1519892340000, "0.00099400", "0.00099810", "0.00099400", "0.00099810", "4806.04000000", 1519892399999, "4.78553253", 154, "1785.14000000", "1.77837524", "0"]
1919

2020
for i in range(0, 500):
2121
first_res.append(row)

0 commit comments

Comments
 (0)