From 20d87ea4b7d0e3ab52a57da728547da971655c3b Mon Sep 17 00:00:00 2001 From: Dario Moceri Date: Fri, 22 Jan 2021 18:56:46 +0100 Subject: [PATCH] removed wrong comment --- bfxapi/rest/bfx_rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfxapi/rest/bfx_rest.py b/bfxapi/rest/bfx_rest.py index d1424fb..9965673 100644 --- a/bfxapi/rest/bfx_rest.py +++ b/bfxapi/rest/bfx_rest.py @@ -143,7 +143,7 @@ class BfxRest: @param precision string: level of price aggregation (P0, P1, P2, P3, P4, R0) @param length int: number of price points ("25", "100") @return Array [ PRICE, COUNT, AMOUNT ] - https://docs.bitfinex.com/reference#rest-public-pulse-hist """ + """ endpoint = "book/{}/{}".format(symbol, precision) params = "?len={}".format(length) books = await self.fetch(endpoint, params)