Software Version
10.4.0
Language Version
3.13.12
Operating System
MacOS
What happened?
- Run
mypy on a file containing a function call to CarrierAccountService.all() that iterates over the returned list
What was expected?
Successful mypy run
Sample Code
from easypost.easypost_client import EasyPostClient
client = EasyPostClient(api_key=<API_KEY>)
for account in client.carrier_account.all():
# Do anything
pass
Relevant logs