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 4
4
==========
5
5
6
6
.. 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.
8
8
9
9
For example, :code: `financials = RESTClient().vx.list_stock_financials() `
10
10
@@ -16,4 +16,4 @@ List stock financials
16
16
17
17
.. automethod :: polygon.rest.VXClient.list_stock_financials
18
18
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__(
52
52
base = base ,
53
53
verbose = verbose ,
54
54
)
55
- self .vX = VXClient (
55
+ self .vx = VXClient (
56
56
api_key = api_key ,
57
57
connect_timeout = connect_timeout ,
58
58
read_timeout = read_timeout ,
Original file line number Diff line number Diff line change 22
22
23
23
class FinancialsTest (BaseTest ):
24
24
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 ()]
26
26
expected = [
27
27
StockFinancial (
28
28
cik = "0001413447" ,
You can’t perform that action at this time.
0 commit comments