From 017f7143cfe312bc018fb205226e4083a59318cf Mon Sep 17 00:00:00 2001 From: Alexander Golec Date: Thu, 9 Jul 2020 12:47:07 -0400 Subject: [PATCH] Update documentation to correct reversed Utils constructor call --- docs/util.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/util.rst b/docs/util.rst index ad125d8..c48d738 100644 --- a/docs/util.rst +++ b/docs/util.rst @@ -29,7 +29,7 @@ usage: account_id = 123456 r = client.place_order(account_id, order) assert r.ok, raise_for_status() - order_id = Utils(account_id, client).extract_order_id(r) + order_id = Utils(client, account_id).extract_order_id(r) assert order_id is not None .. automethod:: tda.utils.Utils.extract_order_id