Skip to content

Commit 1e4583d

Browse files
committed
renamed handlers
1 parent 083a12d commit 1e4583d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

alpaca_trade_api/rest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,13 +168,13 @@ def get_account(self):
168168
resp = self.get('/account')
169169
return Account(resp)
170170

171-
def get_account_configs(self):
171+
def get_account_configurations(self):
172172
'''Get account configs'''
173173
resp = self.get('/account/configurations')
174174
return Account(resp)
175175

176-
def edit_account_configs(self, no_shorting=None, dtbp_check=None, trade_confirm_email=None, suspend_trade=None):
177-
'''Edit account configs'''
176+
def update_account_configurations(self, no_shorting=None, dtbp_check=None, trade_confirm_email=None, suspend_trade=None):
177+
'''Update account configs'''
178178
params = {}
179179
if no_shorting is not None:
180180
params['no_shorting'] = no_shorting

0 commit comments

Comments
 (0)