File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44==========
55
66.. note ::
7- To call vX methods, use the vX class member on RESTClient.
7+ To call vX methods, use the vx class member on RESTClient.
88
99 For example, :code: `financials = RESTClient().vx.list_stock_financials() `
1010
@@ -16,4 +16,4 @@ List stock financials
1616
1717.. automethod :: polygon.rest.VXClient.list_stock_financials
1818
19- .. _Stocks financials vX : https://polygon.io/docs/stocks/get_vx_reference_financials
19+ .. _Stocks financials vX : https://polygon.io/docs/stocks/get_vx_reference_financials
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def __init__(
5252 base = base ,
5353 verbose = verbose ,
5454 )
55- self .vX = VXClient (
55+ self .vx = VXClient (
5656 api_key = api_key ,
5757 connect_timeout = connect_timeout ,
5858 read_timeout = read_timeout ,
Original file line number Diff line number Diff line change 2222
2323class FinancialsTest (BaseTest ):
2424 def test_list_stock_financials (self ):
25- financials = [f for f in self .c .vX .list_stock_financials ()]
25+ financials = [f for f in self .c .vx .list_stock_financials ()]
2626 expected = [
2727 StockFinancial (
2828 cik = "0001413447" ,
You can’t perform that action at this time.
0 commit comments