Skip to content

Commit

Permalink
Update documentation to correct reversed Utils constructor call
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgolec committed Jul 9, 2020
1 parent 1e938b0 commit 017f714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/util.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 017f714

Please sign in to comment.