After upgrading all our access tokens with the following: ```python client = Client(client_id=CLIENT_ID, secret=PLAID_API_SECRET, access_token=token) response = client.upgrade('creditdetails').json() ``` the specified python bindings are not returning data: ```python client = Client(client_id=CLIENT_ID, secret=PLAID_API_SECRET, access_token=token) response = client.credit_get() data = response.json() ``` **Error:** `AttributeError: 'Client' object has no attribute 'credit_get'`
After upgrading all our access tokens with the following:
the specified python bindings are not returning data:
Error:
AttributeError: 'Client' object has no attribute 'credit_get'